Here is how to embend an Excel spreadsheet in a rollout using a dotNetControl : ( rollout dotNetExcelSpreadsheet “Excel Spreadsheet” width:600 heigh…
In fact, you should not be able to use ActiveX controls under 3ds Max 9 64. It’s not recommended to use ActiveX controls in script coded for 3ds Max 9…
See “How To … Develop a Selected Objects Inspector using ListView ActiveX Control” in MAXScript Reference. It shows how to setup a ListView with check…
ActiveX controls cannot work under Windows x64. But they can be used under Max 9 32 bits.
It’s now a .Net ListView in Max 9.
Try : getfilenamefile (soundtrax.name 1) I think you’ve missed collect keyword : tracks = soundtrax.numtracks() trackframes=for i=1 to tracks do co…
In fact, it would be hard to do that in MAXScript because you have to access to window handles and messages (Max GUI is win32 absed) is limited. UIAcc…
ramesh03: But i dont want to add my menu through “under MAXScript Tools and Interaction with 3ds Max > Interacting with the 3ds Max User Interf…
ramesh03: In Maya i am doing like this through MEL-Scripting.But here i dont know to add my Menu to the main window through Script. As said befor…
You have full access to menu modification and creation trough scripting. See Menu Manager in the MAXScript Reference.
If you want to add a toolbar in the main ToolBar of Max, it will be (very) hard in fact because. . But if you want to insert it in an other window, yo…
I didn’t tell you to use the SDK at any moment… Sorry, I always forget the cui class. But a DialogBar isn’t a true ToolBar. And you can now use powerf…
It’s only possible to create Max toolbars in C++ with the SDK. But if you’re using Max 9 take a look at the .Net ToolBar control.
There isn’t a built-in control to do that. You have to create it. One solution is to use an edit text and a button. When the user pick the button, dis…
Here is how to get the day of the week : global monthName = #( “January”, “February”, “March”, “April”, “May”, “June”, “July”, “August”, “September”,…