Error while post submit. Waiting ~5 minutes to see my post really submitted…
You can use: maxRootDir = getdir #maxroot See “3ds Max System Directories” in the documentation.
Yes, you can use managed code in a MAXScript extension plugin. The dotNet bridge is compiled with /clr parameter. The sample is located at maxsdk\samp…
I completely agree with you Johan.
Equality in a if statement is == and not just =: on SelectInvert pressed do ( if cb_wrl.state == true then ( cb_wrl.checked = false ) else ( …
I’ve compiled some plugins for Max 8 with Visual Studio 2005 but never had no such error (maybe because I never compiled the plugin you try to build)….
If you’re running under 32-bit maybe you have a problem in your call to mxscom.exe from UltraEdit (check the tools configuration). I had no problem wi…
Are you under a 64 bits OS ? The mxscom bridge doesn’t work under 64 bits. I’ve this problem at work. But the new MAXScript ProEditor in Max 2008 will…
Hi Shane, Do you know that the MaxOpenEXR MAXScript Interface can now access OpenEXR Attributes and Channels in Max 9 ? Maybe yes but you’re working…
This is a Max plugin I’ve written last year to show how to use .Net with Max SDK. It needs some correction and modification. About using .Net with MA…
In fact, the deltatime variable is a .Net long/Int64 value. So a L is appended. It can be converted to an Integer64 MAXScript value. The L can be remo…
You can use: dotNet.loadAssembly (scriptpath + “/midi/Toub.Sound.Midi.dll”) Instead of using System.Reflection.Assembly class. Also, .Net uses lot …
Thanks for the info Martjin. Never seen this property before. It works also with ListView controls.
You can also force focus calling tv.Focus().