Hi Michael,
A new issue appeared! (It has nothing to do with Nodeeditor)
Open the attached file in V5, select all red curves press Ctrl and while have it pressed try to move them (basic copying procedure)! V5 copies only few lines not all of the selected lines! (V4 is able to open this file and there everything works fine)
> Can you also post the text you have for the "command" part of the shortcut key?
Here is the script:
script: if ( moi.majorVersionNumber == 3 ) { moi.ui.createDialog( 'nodeeditor/index.html', 'resizeable,defaultWidth:680,defaultHeight:420', moi.ui.mainWindow ); } else if ( moi.majorVersionNumber == 4 ) { moi.ui.createDialog( 'moi://appdata/nodeeditor/index.html', 'resizeable,defaultWidth:680,defaultHeight:420', moi.ui.mainWindow ); }
I changed it to : script: if ( moi.majorVersionNumber == 4 ) { moi.ui.createDialog( 'nodeeditor/index.html', 'resizeable,defaultWidth:680,defaultHeight:420', moi.ui.mainWindow ); } else if ( moi.majorVersionNumber == 5 ) { moi.ui.createDialog( 'moi://appdata/nodeeditor/index.html', 'resizeable,defaultWidth:680,defaultHeight:420', moi.ui.mainWindow ); }
and Now it works :) thank you for the hint.
Edit: or maybe I shouldn't change it that way?
Please help me with other issue.
-Psygorn
|