It is strange indeed. I am using Max 2011. I have 2010 and 2012 installed too, but I never used 2009 (I hated it even before it was released), so I ca…
To see the mesh, the Display operator should be set to Geometry. I just copied the script from the help into a Script Operator, switched Display to Ge…
Interesting… Here is an optimized version: ( local tstart = timestamp() local thearr = objects as array –shorter way to collect, alternat…
I think we can safely assume the Sphere primitive was the first geometry object ever to be coded for Max pre-1.0 (sometime in 1993 perhaps?), so I don…
Welcome to the wonderful world of change handlers! First of all, I would not advise doing what you are doing. Instead of recreating the spheres on e…
Try again. I had the function already defined as global, but forgot to include an explicit declaration in the local scope of the script. So it was wor…
Here is a possible way: *A general event callback is monitoring changes in the selection and when you select new objects, it registers a when callbac…
As it has been stated in another thread, yes, it is TECHNICALLY possible to provide a compiled CHM version of the online help. Please let Autodesk kno…
Not really, you can call snapshotAsMesh() to get the TriMesh of any object, the rest is trivial meshOp. mapping calls (there is a whole section in the…
floatingworld: …Am I able to create a function for enabling in the same way I can for filter? Not is the same way as the filter function of a pic…
I landed 5 hours ago from a trans-continental trip from Sofia to Vancouver. I suspect a jury would consider me not responsible for my own actions at t…
rollout myrollout “Some rollout” ( group “Some Group” ( Button UprRight “PressMe” width:160 ) group “Another Group” ( Button Corners “Connect …
Glad it worked! Don’t feel discouraged from your first experience, dealing with other peoples’ code is not easy even for me.
Of course you do – because you don’t read what I write I told you to CALL THE FUNCTION WITH THE SAME ARGUMENTS. Now your function wants 3 arguments, …
No, I proposed to modify the existing code function md5export = ( cursel = GetCurrentSelection() mesh = cursel[1] if mesh == undefined do ( mes…