The On BuildMesh is called whenever the Validity Interval of the plugin is invalid. Max is trying to be economical with updates (and often fails), but…
denisT: because… (dramatic pause is here) … every character can be also with no hat, pants, or shoes True, even Spongebob is sometimes without p…
Animare: 543 = 60 But that doesnt seem right? Why doesn’t it? If you don’t trust your instincts, you can write 3 simple nested loops just to ge…
For your command to work, the executable would have to be in an environment PATH variable. You could either check the PATHs themselves, or scan for gm…
(if (LADY == SURE; \ GLITTER == GOLD) \ AND SHE == BUYING do \ straight_STAIR WAY:0 \ stepwidth:20 stepheight:10 length:100 \ TO:(text …
The sad short answer is – you cannot do that with MAXScript. You can only access points of the twist curve if they already exist AND are animated. You…
When I run your script (and replace the image and the path to it with an existing one here so it can find it), it runs ok the first time and shows the…
If you insist on using this code structure, try to run the above in your head and see where it makes no sense! You are defining the rollout which has …
The fact that it runs after several tries shows that you have a collision of implicitly local variables with explicitly global variables. This is usua…
String Literals, you can find it by searching for “verbatim”. It was added in Max 2008, so instead of saying a = “\\something\ est” you can say a = @”…
Check out the updateToolbarButtons() function which can be used to update the states of all MacroScripts currently on toolbars. Also see
I should go to sleep, but I haven’t done “recreational scripting” in ages. So here is the version with an Ellipse option: ( global CircleDraw_Dialog …
gazybara: This is very interesting, Bobo, As the Japanese flag. The default colors were indeed intentional. I started with black and decided to g…
Here is something to play with: ( global CircleDraw_Dialog try(destroyDialog CircleDraw_Dialog)catch() local theSize = 150.0 rollout CircleDraw_Dialo…
I would just compare the files’ modified date. getFileModDate <filename_string> You can also call getFileSize <filename_string> to get…