Apologies if this has been addressed previously, but a quick search did not reveal anything.
Is there a way to program a touchscreen “button” to navigate to a different page within a given preset? I’m trying to avoid having to press the physical[MENU] button, then the page #.
Yes, almost all of my presets do that.
Load the PCM 80 or the Korg DL8000R.
Basic idea is to have the momentary button call a function that jumps to the page. The ‘trick’ is to use the ON value of the button to indicate the page number to jump to next
The new v4 firmware also supports remapping the hardware buttons to other functions, e.g, a pageNext and PagePrev function. There is no documentation for that yet, but I think it is on its way soon.
Thanks for the quick response. I still must be missing something, though.
I duplicated your momentary button’s settings to one of my Strymon presets:
Mode: Momentary
Function: jumpPage
Message Type: Virtual
Parameter: ???
On Value: 3 Off value: 0
What is the “Parameter” value? I clicked all over your PCM’s page 1 buttons (the ones that jump to other pages) and couldn’t see any pattern to the values you used for “Parameter” - they all were in the 900s…
I can’t get my Strymon preset to jump pages with these values, so something must be amiss.
have you copied or made the ‘jumpPage’ function in LUA? If not, nothing will happen.
I expect the On Value is used to set the page number you want to jump to, go check in the LUA code of the function if that is indeed the case. If so, the On Value should always be between 1 and 12.
The parameter value is the unique value you assign to the control (in this case button) as its ID. If you do not want that the button isn’t doing anything else beside that ‘jumpPage’, make sure within the given type of control (I expect you to choose type Virtual for this) the parameter value is unique, i.e. no other control has the same parameter number. Any logic you want to give to those parameter numbers is a logic you make for yourself.
Thank you, thank you all. I was just about to give up and avoid going down the LUA sorcery rabbit hole, but I managed to make page jumps work with a little old-fashioned trial-and-error.
Don’t consider LUA as a rabbit hole. It’s rather a discovery, allowing tou to enrich your music. Super that you managed to make it work. The first steps are set