Scripting and Node Editor in Moi3D V5

 From:  Michael Gibson
11061.23 In reply to 11061.22 
Hi Sven, if you put it in "/home/sven/.wine/drive_c/users/sven/AppData/Roaming/Moi then to launch it you would need this in your shortcut key:

script: moi.ui.createDialog( 'moi://appdata/nodeeditor/index.html', 'resizeable,defaultWidth:680,defaultHeight:420', moi.ui.mainWindow );

If you put it inside /home/sven/.wine/drive_c/Program Files/MoI 5.0 beta Dec-1-2023/ui then the script to launch it is slightly different the URL starts with moi://ui instead of moi://appdata like this:

script: moi.ui.createDialog( 'moi://ui/nodeeditor/index.html', 'resizeable,defaultWidth:680,defaultHeight:420', moi.ui.mainWindow );

- Michael