Hello there,
I'm stuck in finding my way how to do the following.
With a button I can do the following:
pressing it short = changing an option within a menu
pressing it long = changing between menu's.
So now I need to define
menu1 has 2 options, menu2 has 3 option, and menu3 = 6 options.
and of course add some actions to the choice I've made.
I'm a bit green when it gets deep in arrays and how to use them this way. I only know the basic how to put information in an array and how to read a value from an array nr.
If someone could give me a hand

Maybe I'm looking in a wrong direction and don't have to use arrays.
I was thinking:
int menu[] = {2, 3, 6};
but how to increment the option when in the selected menu....
Thanx!