Well, if you are only storing preferences and stuff like that, I would say stay with the INI. While you could use XML, I don’t think it’s worth the ha…
Yup, clearly a variable scope problem, it’s hard to diagnose without the full code, but basically you have to make sure that RappaTools is defined as …
Sound like a variable definition error, you should comment out the TRY CATCH to find exactly where the problem is, my guess is that the variable Rappa…
You can have an array with all the presets inside a variable and use the UI to determine the index of the selected preset inside the array.
Well that’s kind of my point, wouldn’t it be better AND more useful to just choose one unique name for the variable and use always the same? Is there …
Why would you want the user to define the name of a variable? That just sound like a really bad idea…
Check the topic “Command Panels” in the MXS reference.
Mostly the problem is the $/selection variable that has some special rules you have to consider…
I doesn’t get evaluated again. Basically when you do: initialselection = $ You are telling Maxscript that you want your variable to hold whatever it…
initialselection = selection as array for i = 1 to initialselection.count do ( select initialselection[i] –now i will do an export selecte…
Seems to be set up to work for every object selected.
Yes you will surely need to have Vray installed. You can try installing the demo version, that would probably work.
you could use execute: execute (“persistent global “+variablename+” = #()”) Even though it’s not really good practice, sometimes there’s no way aro…
Because you’d still have to send the INI along with the file and that’s not what he wants.
The LoneRobot script seems to work fine here. What Max version are you on? Also I couldn’t get your script yo display any buttons…