i am currently writing my first script for Arturia KeyLab Essential and i got everything working as labeled except the PRESET and CATEGORY buttons.
These act as "mode-buttons" and while active define which CC is send when pushing the preset-browser dial. Regardless which one is currently active, i then start the browsing session like so:
Code: Select all (#)
deviceBrowser.startBrowsing();
deviceBrowser.getPresetSession().activate();
application.arrowKeyDown();
Also the mode buttons can be used while the browser is open. It would be great if i could switch focus in the current browser session too.
So it's 2 things:
- start browsing session with the correct column
- switch to a specific preset-window column on button press
my guess is it has something to do with "getResults", but there are no examples.
