squirreltown
12 years agoRoku Guru
For each
I am trying to draw a list using a for/each statement with multiple variables. What i am getting is each of ten items drawn in each of ten slots, where i want one item in each slot.
Is this possible? I am not seeing it yet.
Thanks
Is this possible? I am not seeing it yet.
for i = 0 to 9
for n = 1 to 10
for p = 211 to 589 step 42
m.screen.drawtext( n.toStr()+")" , 810, p, grey, font6) 'playlist:
m.screen.drawtext( m.item[i]["title"] ,850, p, grey, font6) ' song title
end for
end for
end for
Thanks