ZeBoxx2
@zeboxx2
New Member
Joined: Feb 14, 2024
Topics: 7 / Replies: 1402
Reply
RE: #preRender isNetRender

it’d be something like… callbacks.addscript #filePreSaveProcess “savetype = (callbacks.notificationParam())[1]; if (saveType == 1) do ( close-explor…

16 years ago
Forum
Reply
RE: #preRender isNetRender

to prevent hold/autosave triggers, check the callbacks.notificationparams() result in the #filePreSaveProcess callback: General Event Callback Mech…

16 years ago
Forum
Reply
RE: #preRender isNetRender

you can’t set that value, but I don’t think that’s what you need anyway. If you just want your callbacks to only run if the machine’s -not- performin…

16 years ago
Forum
Reply
RE: DotNet NumericUpDown Control

nope… considering decimal -is- a float type (just represented in decimal space rather than binary). I’m not seeing some obvious clean work-around eit…

16 years ago
Forum
Reply
RE: DotNet NumericUpDown Control

why not create a new .NET float value, feeding it the value from the updown control, and then let maxscript cast that to its own float? Edit: riiight…

16 years ago
Forum
Reply
RE: Set DirectX Cache state through Maxscript?

I think you’ve got a scope issue… fn BREP_preImport_Dialog = ( … dialogMonitorOps.registerNotification BREP_SET_Import_Dialog_Settings id:#setBREP…

16 years ago
Forum
Reply
RE: Set DirectX Cache state through Maxscript?

This… dialogMonitorOps.unRegisterNotification id:#setBREPImportDialogSettings dialogMonitorOps.enabled = false …should not go in the top level of …

16 years ago
Forum
Reply
RE: Set DirectX Cache state through Maxscript?

getWindowResourceID() is your best bet. It’s unlikely to change at any time unless the dialog designer decides to re-order things (in which case any …

16 years ago
Forum
Reply
RE: Material plugin interface problem

Can’t test right now, but if you have this scripted plugin in <max>\Plugins, try placing it in <max\Scripts\Startup\ instead. Long shot, tho…

16 years ago
Forum
Reply
RE: Selecting objects by name?

short posts are awesome… darn forum. so err… diesell – all sorted?

16 years ago
Forum
Reply
RE: Selecting objects by name?

SyncViewS: You outsmarted me, it was just a joke A horse and a cow enter a bar…

16 years ago
Forum
Reply
RE: Selecting objects by name?

diesell: i want to select objects by name instead of selecting it by mouse … can anybody help me plz Just replace… for i in selection do …

16 years ago
Forum
Reply
RE: Selecting objects by name?

SyncViewS: Hi dieselll, Richard, you forgot: select (for item in $Box* collect item) Naw, that’s the same as… select (execute (“$Box*”)) m…

16 years ago
Forum
Reply
RE: Selecting objects by name?

select (getNodeByName “Box01”) — selects only Box01 or… select (execute (“$Box*”)) — selects Box01, Box02, BoxTop, BoxEtc or… for o in objec…

16 years ago
Forum
Reply
RE: Spinner controllers for FOV, Target

myCamera = freeCamera() myCamera.fov.controller = Bezier_Float() rollout roll_test “test” ( spinner spn_test “test” controller:myCamera.fov.controlle…

16 years ago
Forum
Page 6 / 94