This trick doesn’t work with modal dialog . Creating maxscript dialog with modal style suspends maxscript code execution, so window reparenting does n…
Connecting script controller to controller of interest does the job. Only drawback is creating an extra node to hold script_controller.
I’ve been testing functions library I wrote. Before each testing function call I create some mock data ( 10 point helpers) and when function is done I…
my mistake, of course.
for i = 1 to 1000000 do (p = point();delete p) This simple loop causes 3dsmax to allocate all available system memory. From my point of view, there i…
You could compile mascript code string, handle all compiling errors to know if script is ok. and then evaulate it. vl.parser = new Parser (vl.s); …
ContextMenuStrip appears to be a top level control and probably event handler have to be defined in matching top level scope. Like this: ( …
cElementTree is the same as elementtree but written in C so it’s fast. It is about 10 times faster then XMLObject. See attachement. XMLObject is a wra…
Importing “sys” module works, and importing “os” module returns an undefined value. This is what I get in the listener after evaluating regex.ms samp…
Hi, Thank you, ehulser ,for sharing your blurPython.dlx. It seems to be a great tool. Maybe, you can help me with situation I’m having. I did all ste…