I think this should work: macroScript ShowWindowsToggle category:”HalfVector Tools” buttonText:”Show windows toggle” ( global WM_SYSCOMMAND = 0x0…
Jajaj…ok, you’re welcome. By the way. As you can send any message to the window, you could close them if you will: global WM_SYSCOMMAND = 0x0112 glo…
Ok, I’ve developed an extension for MAXScript using C++ that gathers the handles to the opened (and not minimized) child windows (it only gathers “min…
Exists a way and is enumerating MAX child windows using the Win32 API and C++ and storing the window handles in an array. Now that you have the window…
One solution could be loop through all the shape splines and find out the first spline with some knot selected. This is the function: fn getFirstSele…
Here’s another function. It’s a bit more flexible in the way it lets you specify the tokens to be replaced and the character/string which will replace…
I’ve created a MAXScript extension with C++ (using the Win32 API) that mimics the behaviour of the standard getSavePath function in MAX8 but for MAX7 …
To extract the path from a full filename, you can use the function getFilenamePath: getFilenamePath “C:\\3dsmax\\images\\image.jpg” That will return…
Well, I’m not sure about this but anyway… Ok, seems like the position (particlePosition) of the particle in the Proceed method is not the position fo…
Hi. I think this should work. on Proceed pCont do ( — Array of objects global points = $Point* as Array — Particle count count = pCont.numPa…
Hi. Well, I’m not that experienced with MAX SDK or MAX. Anyway, about the path constraint thing, I’m not sure it’s an easy thing. For example, imagin…
I thought some comments would be nice to understand the source code!. Also, I’ve changed the output directories to Debug/Release folders. Much better,…
I’m glad it works!. Here’s the source code for this little plugin. The main functionality is in the file delvistrack.cpp. As you can see is really si…
Seems like you can’t delete the visibility track from the Track View through MAXScript. So I’ve created a MAXScript extension in C++ that exposes a f…
Hi. If you want to trim the full path: “C:\Projects\project\models\props_dev\dev_test.x” to: “props_dev\dev_test.x” You’ll have to specify what t…