Hello everybody,
I want to store array values for later use. For example drawing a series of values, then storing them, then drawing new values and be able to redraw the array with the values I stored before. I hope I have been clear.
Thanks
-
Store array values
-
there are many ways to do that, for example you could save the arraydata to a textfile, or whatever.
-
I need to do that in a sort of dynamic way. I need to recall it through a sequencer and switch between various arrays settings. Lets say I store a drawing number 1 made on an array. Then I store a drawing number 2. My sequencer then will draw the array with 1 or 2 or whatever.
-
you can store the content of an array to a text file with the message
[; arrayname write content_1.txt(
and recall it with the message
[; arrayname read content_1.txt(see the attached patch.
-
Thanks!
I tried it quickly and seems to work perfectly! later I will try to implement it in the patch I am building.