Nodebundle for playing with nodes

 From:  bemfarmer
7777.1391 In reply to 7777.1389 
Hi Karsten,

The html box is easy to delete, so not much of a problem.

The docupath in basicfunctions.js refers to "index.html", which matches "dark" hotkey,
whereas "light" hotkey refers to .../indexhtml?scheme=Light"...


My Shortcut key for "dark" nodeeditor, Ctrl+Alt+M:
moi.ui.createDialog( 'moi://appdata/nodeeditor/index.html', 'resizeable,defaultWidth:680,defaultHeight:420', moi.ui.mainWindow );

 

My Shortcut key for "light" nodeeditor, Ctrl+Alt+N:
moi.ui.createDialog( 'moi://appdata/nodeeditor/index.html?scheme=Light', 'resizeable,defaultWidth:680,defaultHeight:420', moi.ui.mainWindow );

Modification to reverse the html problem, but not correct it:
In docupath, replace ..."index.html"... with ..."index.html?scheme=Light"
Now the dropdown works in Light mode, BUT not in Dark mode.

So this is not a solution. I can now use the dropdown documentation in Light mode, but not in Dark mode.

- Brian

Maybe a fix in docupath would be to do: If index.html?scheme=Light, do the dark dialog, else do the light dialog. Or something similar?