Copy this into a maxscript window and read the comments. I think this should do what you needaSelection = ( selection as array ) --store the selection in an arrayaDuplicatedObjects = #() -- create an empty array for storing duplicated objectsfor i = 1 to aSelection.count do( obj = aSelection[i] --pull the object from the…
well, what you could do is save all the dummys you created with the first script in an array and then cycle thru that array with the second script deleting them... this way you could have other dummys in there, too or you look into automatically renaming those dummys (e.g. putting a prefix like "pivotdum_" before you…
Since I've been so successful finding grade A help here before.... I'm back :D Still working on this script which is almost done. However I'm having more trouble. What I'm trying to do it; * snapshot all the meshes in an array to a new single mesh. (tempMesh) * determine the centre point on x and y - store these *…
r_fletch_r; cheers for this buddy, very helpful. fn delDummies = ( delete ( for o in helpers where classOf o == Dummy collect o ) ); is what i came up with based on your suggestions. At the moment I'm trying to expand this tool to make it more autonomous. To do that I want to; * Take all the objects in a selection and name…