I have about 20 functions that I’m sharing in a bunch of scripts right now. So I’m doing something like: Functions.ms: fn printname = ( return …
vij: Cant I get one menu named “Mymenu” inside of 3dsMax using maxscript easily. Geez mel could do it so easily in Maya. Honestly unless you’re d…
Manual Method: Make your *.ms a macroscript (macroscript <name> etc etc etc) and install it. Menu Bar: Customize -> Customize User Interfac…
Hehe I started writing a drag and drop imgtag interface last night and finally decided it wasn’t worth the bother. Or at least the way I was trying t…
Yeah that’s what I’m using right now as a substitute but it’s lacking some nice features like automatic callbacks for when it’s pressed and released. …
Well I know there is Angle Snap toggle: max angle snap toggle but that probably doesn’t do you a whole lot of good since that’ll only toggle it from…
Oh hey look at that “MaxOps.getNodeByhandle” I guess I can get rid of that custom function now… Completely off topic but: Bobo on the Rollout Interf…
I don’t see a warning in the help doc. Is there another place handle is mentioned than the “INode Interface” page?
Handle is exactly what I wanted. I don’t care if the guid doesn’t get passed along from scene to scene. As long as it’s unique within the scene. T…
What I’m currently using is this: — Get a node by a string. Example: getnodebystring((selection as array)[1] as string) — function GetNodebySt…
Found the problem. Somehow CArray was inheriting the value of the children themselves instead of just ingesting it into an array. So as CArray was m…