Replies: 1 comment 2 replies
-
Hi, this has been explained several times in the old forum so please also look there. In my Pro-2 panel there is a method called Save_onChange and another one SaveProgramData. The way to analyze a panel is to start from a button, look at the OnChange method and then look further from there. Different steps are needed:
From there you can expand and handle anything ;-) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to save the contents of some labels to disk.
From what I understand the order of things is like this:
1: convert the ASCII to hex and put it in a table
2: merge tables, so create a table with all the individual tables in it
3: save to disk.
I have been reading various topics and looked at the Pro2 panel and I have not figured out a way
to convert even 1 label content .
What is a beginners way of doing this?
Dnaldoog wrote this and it seems exactly what I need but how can I put that to work?
str2hex(string): “string to hexa” = own function to convert a string to an hexa representation as a string str2hex(“Hello”) gives “48656C6C6F” In Ctrlr console you test with console(tostring(str2hex("Hello"))) I’m using this function to store patch names in sysex.
Beta Was this translation helpful? Give feedback.
All reactions