I would like to read from an arry and display the content in a text object.
The result should be something like:
F#
Gb
or this:
D#
Eb
Is it possible to store the line break along with the string, or if not how would I do the following:
If array.at(x) has more than one character then write the 1st and 2nd character to a text field, create a line break and then write the 3rd and 4th character
I tried this, but the resulting text only displays the first two characters..
left(Scales.At(8,((Self.ScaleIndex-1)%12)+1),2) & newline & right(Scales.At(8,((Self.ScaleIndex-1)%12)+1),2)