mobeen
@mobeen
New Member
Joined: Feb 15, 2024
Topics: 4 / Replies: 47
Reply
RE: is there a plugin which can make max run with more objects .

They may be employing some optimzations by turning on only necessary items and turing off those not required.

18 years ago
Forum
Reply
RE: Need help optimizing speed in a treeView control

Try something like this fn GetChildren node = ( if ( node != undefined ) do ( if(node.children>0) then ( –Now get children (if …

18 years ago
Forum
Reply
RE: Can you access Summary Info dialog in MXS?

Try this max file summary Hope this helps Mobeen

18 years ago
Forum
Reply
RE: One last question for you guys, Apply vertex color on selected object vertices, how ?

Try this meshop.setVertColor $.mesh 0 #{1..$.mesh.numverts} (color 128 128 128) To get the vertices having a certain color try this meshop.getVe…

18 years ago
Forum
Reply
RE: Max script error upon merging animation

From the look of it you are trying to add something which has been evaluated first by the maxscript interpretor resulting in the “ok” string. Try to p…

18 years ago
Forum
Reply
RE: Recursive problelm

You are causing an infinite recursion here which exhausts max call stack and thats why it quits. Try to alter your logic of recursion such that there …

18 years ago
Forum
Reply
RE: Timer not ticking

Have u tried lowering the interval of timer to something less than 1 second (by default it is 1 seconds). Your renders maybe taking all of the time. …

18 years ago
Forum
Reply
RE: Material editor layout ?

I was unable to find any maxscript interface but there are macros fo this thing try this actionMan.executeAction 0 “50048” — Tools: Material Edito…

18 years ago
Forum
Reply
RE: Reorder Modifier Stack

_stev_: [color=white]Does anyone know of a workaround?[/color] Sure Make a clone of the original object without any modifier. Apply the modifie…

18 years ago
Forum
Reply
RE: Drag&Drop Material

As far as I know there ain’t such functionality for a button however drag drop is available for treeview and listview activex controls. Why don’t you …

18 years ago
Forum
Reply
RE: problem about MultiMaterial .

Are you sure that the multimat is a valid reference to a multimaterial? Try this it worked for me assuming that the first material is a multimaterial …

18 years ago
Forum
Reply
RE: update of a spinner on selecting an object.

You can do so by two ways using callbacks using timers Here is the sample script simply draw some spheres and see it work. Tested in 3dsmax5 so it …

18 years ago
Forum
Reply
RE: Render sequence of specified region in Max ?

Sure you can render region using this render fromframe:0 toframe:100 rendertype:#region region:#(10,10,110,110) This line creates a render from fra…

18 years ago
Forum
Reply
RE: Maxscripts slower than C++ plugins

The difference is that of a compiled and interpreted code. Maxscript code is interpreted by the maxscript compiler whereas the C++ code is compiled th…

19 years ago
Forum
Reply
RE: Function Help Please

Yep put your function in a .ms file and place it into MAX_ROOT\scripts\startup directory.

19 years ago
Forum
Page 1 / 4