Hi, Rollout elements are create at compile time, so you can’t add them dynamically the way you tried. Take a look at the “RolloutCreator Functions” t…
Hi, This function does work. There’s an example in the mxs help in the “MAXScript Dialogs and Rollout Floaters as Extended Viewports” topic. Note tha…
Hi, Check out AddInBetween () it might do what you want, and if not, you can look at the code and see how I selected the surronding keys. Cheers, o
Actually, these are not ’ (single quotation mark) but ` (grave accent sign, the one usually next to the 1 key), but yes, you can leave them out in mos…
Hi Klaas, I find the ADO.NET to be quite complex, and since most of my SQL knowledge comes from using it with PHP, I prefer to just use SQL commands…
Hi, If your nameing scheme is strict (like in your example above) you could put them all in an array and sort it: ( local files = #(“AA_BB_V01_02….
Hi, It seems that the object you wish to add the unwrap_uvw modifier has to be selected in order for the flatten function to work correctly. Try this…
Try right clicking in the rollout area in the modifier panel, and select “Reset Rollout Order” cheers, o
In windows you should use quotation marks (“) around a path that contain spaces when passing it as argument. I’m not sure it will help in this case th…
Hi, AFAIK, the reason it should be avoided is because it’s relatively expensive in terms of cpu cycles. So, my rule of thumb for return usage is: av…
I check if it’s transform controller is IKControl. That would be really nice, thank you! Please send it to martin at breidt dot net, thanks! – Mart…
Hi Martin, I’ve written a function that bakes objects’ transforms and can handle IK Chains. This is an ugly can of worms We used this function at sn…
Hi, The registry key for the installation dir is: HKLM\SOFTWARE\Autodesk\3dsmax\8.0\Installdir The 8.0 represents the max version. You have a differ…
Hi, AddModifier is a function, it’s not a method of the objects so your code should be: for o in selection do addModifier o (Materialmodifier ()) ui…