Maybe the filePath formatting is not right? Normally in maxscript you want to use \ instead of \ for filepaths, and you don’t need the @. So the line:…
AFAIK the options for the file types are generic, meaning that you don’t have to set them up each time. As for setting them, I seem to recall they eac…
Check “Standard Open and Save File Dialogs” on the reference for a way to access the standard dialogs. You can also use selectSaveBitMap() for the bit…
Well you could use a getClassInstances for the modifier class of your modifier, and the compare the results with your original item. It’s not perfect,…
Besides getClassInstances returns all instances of a given class, and from what PEN said I think hes is looking for a SPECIFIC modifier. I’m guessing …
I understand. Then, for one thing, are you sure you are not just asking for the first line of the strignstream? And also, again, wouldn’t it be easier…
Wouldn’t it be easier to store the file’s path?
Persistent global variables?
Check out “FileStream Values” in the reference for ways to open/edit/write text files in maxscript. newTXT = createFile “C:\\TEMP\ est.txt” format “…
biddle: Have you considered wrapping your structs in a dotNetMXSValue and then storing them in the tags of a treenode? You’d get a hierarchy of stru…
You can try with the LostFocus event, which if you are dragging something only happens when you release the mouse button outside, it’s not perfect how…
2# – Just assign the node under the mouse to the selectedNode property like we talked about before. As for 1#… well, what kind of drag and drop are y…
I normally use the SelectedNode property for both setting the currently selected item and clearing the selection. So if you create a new node and stor…
I get a few missing variables when I try to run the code, any chance you could clean it up a bit so I can try it? (I’m lazy, I know =P)
Nice. I’ve noticed you’ve done some work with the cursors, personally when a script is gonna requiere some loading that might take more that say a sec…