Bobo
@bobo
New Member
Joined: Feb 14, 2024
Topics: 1 / Replies: 2249
Reply
RE: Metaball Script Issues

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…

14 years ago
Forum
Reply
RE: Metaball Script Issues

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…

14 years ago
Forum
Reply
RE: Maxscript takes lots of time to complete

Interesting… Here is an optimized version: ( local tstart = timestamp() local thearr = objects as array –shorter way to collect, alternat…

14 years ago
Forum
Reply
RE: Script controller bug

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…

14 years ago
Forum
Reply
RE: random not working correctly

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…

14 years ago
Forum
Reply
RE: Maxscript and Mouse Drag

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…

14 years ago
Forum
Reply
RE: Maxscript and Mouse Drag

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…

14 years ago
Forum
Reply
RE: MAXScript 2012 Reference sucks

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…

14 years ago
Forum
Reply
RE: UV location to mesh location

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…

14 years ago
Forum
Reply
RE: enabling buttons in same rollout but seperate group

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…

14 years ago
Forum
Reply
RE: enabling buttons in same rollout but seperate group

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…

14 years ago
Forum
Reply
RE: enabling buttons in same rollout but seperate group

rollout myrollout “Some rollout” ( group “Some Group” ( Button UprRight “PressMe” width:160 ) group “Another Group” ( Button Corners “Connect …

14 years ago
Forum
Reply
RE: How to get if statements to work with multiple checkbox options?

Glad it worked! Don’t feel discouraged from your first experience, dealing with other peoples’ code is not easy even for me.

14 years ago
Forum
Reply
RE: How to get if statements to work with multiple checkbox options?

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, …

14 years ago
Forum
Reply
RE: How to get if statements to work with multiple checkbox options?

No, I proposed to modify the existing code function md5export = ( cursel = GetCurrentSelection() mesh = cursel[1] if mesh == undefined do ( mes…

14 years ago
Forum
Page 8 / 150