have you tried to create a simple geometry plugin? If you put a reference to a shape it interactively refresh the geometry
you need to create the dialog on startup, dock it and then open the graphite interface. try with this little script: –TEST DIALOG DOCKED rollou…
I john look at this example: obj=pickobject() i=0 while obj!=undefined then ( i+=1 — do something obj=pickobject() )
there is a topic in maxscript help named “how to make it faster” try to use those tips. Try first the “do not use return, break, exit or continue” [c…
I had the same issue, take a look here, it should work. cheers
you should use obj instead of $. cheers
I suggest you to read the topic “how to make it faster” in the maxscript reference. Anyway try to change your for loop with this one: for thePointDa…
but your function must wait until you press the button? Your first example was with integer, your second with boolean… It’s hard to help you if you d…
create the rollout with a checkbox, inside the function use a if that controls the rollout checkbox and set var to 20 if the checkbox is true test=un…
as the compiler sad: No outer local variable references permitted That means that inside a rollout block you can’t use a local variable defined in a p…
for the scene name use this:maxFileName for the path this one:maxFilePath cheers
thanks for replies!! I tried both version and I think I’ll use the one posted by bobo. The reason is that it’s vertex independent and since my script …
try this cheers