Help!

Hi I want the blue permanently on. I would like to have this only with touch. is this possible ?? I’m not familiar with Lua

What do you mean?
You want the preset page select menu to stay open?
I do not think its possible.

I do think the preset select menu kind of sucks and was hoping for a option that you can switch pages using a push button element or a Lua call but this isn’t possible.

For me the menu is always disappearing or not responsive. I have to push the encoders multiple times to get to the page i need.

what you want is possible! With a LUA script !

Think you can only change the active control set.
Did not see any Lua call to switch page.
So how would I change a page with Lua?

look in the presets there is an example with the function you want to have. You do that in the editor.

1 Like

wow that is great! thanks for pointing that out.

So that seems also the only way for you to get what you want.
I can check for you. might be easy copy and past of some lua script and add 2 buttons and add functions to them in the editor.

yes, take a look at Page switching.

It requires Lua but it is actually very simple.

The following function needs to be added to the Lua editor:

function switchPage(valueObject, value)
  pages.display(valueObject:getMessage():getValue())
end

And that function needs to be called when the button is pressed:

The “Off value” sets the page to switch to, when the button is released.

Note, if you have more buttons like that in the preset, you should set a unique parameter number to each of them,.

3 Likes