what is happening in the project, and what do you want to happen instead? i am attempting to replace three initially set hsb variables in each square of my art pad to one string variable. for example, the top left square in page 2 is set to hsb(0, 100, 100) [red], which i used to represent by setting a “hue” variable to 0, a “saturation” variable to 100, & a “brightness” variable to 100. however, to more easily add more pages to the art pad, i decided to represent it with a string instead: “,000100100”, and have the three variables automatically set themselves. however this is not working & i don’t know why, so i figured i’d turn to the mighty power of degug to help me. what’s actually happening [as opposed to the desired result] is that the variables are not setting as intended, and are staying at their default values of all 0, which are interpreted as black [hsb(0, 0, 0)].
nah, i work it like a cursor and that works pretty easily - in front of a string the cursor is at position 0, and for every letter the index increases by 1
thanks tri! i actually realized i could turn each color from 9 digits to 7 by subtracting 1 from s & b. [and use “-1” for the case that either equal 0]