Yea, It is bit wired…please try the following way, I have used Maxscript to make it bit easy to understand for MaxScripters as my level best. —…
ZeBoxx2, yea that is easy way to overcome this problem… Sorry, the hard way I have actually not dicussed the process in deatail in my previous post. H…
From the use I can assume they have used internally AppDomain unloading but not sure as it is not exposed in user level. Incase of Appdomain, load the…
Yea it is really big problem with .net assembly which can not be unloaded once it loaded. Only AppDomain can be unloaded. Have a look about it on MSDN…
I think, it is possible. Can play with the 3dsmax.exe.config file with in 3dsmax installation folder. Anyway, great going guys. Lots of GUI magic pos…
there is this nice code on maxscript reference under String Literals topic which printout all of them. char=“0123456789abcdef” for i=1 to char.count …
@ is non printing character. Please use \x40 for it. example: label lbl1 “\x40” pos:[30,21] width:93 height:45
What about this way? class Shed; class Tool { public: Tool(Shed* shed); }; class Shed { Tool* getContents(); };
Strange indeed! Now I have tried to merge them…but again failed to regenerate the problem…can you tell me please what maxSDk version are you using? I’…
Hi, I have quickly created a dlx a plugin to test it( which gives two maxscript functions AddNormal and removeNormal)…with the following block of code…
you can try Data exchange inteface for export mesh data. Open 3dsmax SDK help and then search with this “Programming with 3DXI”. Select the first sear…
try this… obj = createOLEObject (“Shell.Application”) obj.minimizeAll() –obj.undoMinimizeAll() releaseOLEObject obj
Thanks David…it is really very helpful.
hi Vicki, If you are compiling intervalarray from howto folder you not have to set anything. It will automatically find the lib file and includes fil…
In my work area Im using visual studio 2005 team system…but in my home Im using free visual studio express edition (It has almost all features, but …