Hi, I really like, well, quite a few of the tools available at http://tools.renoise.com and I was just wondering, I’ve lately taken to using global view presets - and was wondering, can a script be open inside a global view preset?
can it’s position be sved somehow so that it is always open at the right place? ![]()
Presets are currently not part of the script area and vice versa, so no, you unfortunately cannot incorporate your Lua script dialog into a global preset view.
All dialogs are currently opened centered on the screen where Renoise is active.
Well. Since you can recall a global view preset from LUA, you could (short description) 1) alter the tool you want to run by adding the function below 2) set this as a custom keybinding instead of the current recall view keybind (normally F1-F8).
renoise.app().window:select_preset(preset_index)
You cannot position the GUI though (2.7.1).
1 Like
That’d be good and useful, if I knew how to write over global view presets with a script (or if I even used global view presets
)
But good to know there are api functionalities even for this!