I want to simplify a SIMPL+ program
I have 12 Presets with 24 buttons in each one.
The name of each button is a text that the user can change. I declare them as such:
STRING button_memory_P1[24]25] button_memory_P2[24]25]; through to P12. With the P representing each of the 12 presets.
Instead of having a long list of all 12 presets, is there some way to add a variable to this string so that a FOR (1-12) representing the presets can be used.
Something like:
STRING button_memory_P[preset_number][24][25];
This does not work of course. But is there a way to make it so that the [preset_number] variable will read through all 12 presets?