Maybe my question was stated unclearly....
Still hoping someone can help me out...
Maybe this will help explain my problem better and what I am hoping to achieve....
for (var i:int=1; i<11; i++){
C1_btn.C1_Name.text = playlist[i];
C1_btn.C1_Desc.text = desclist[i];
}
In the example above, how do I get the number 1 (both spots) to increment with i... I am certain there must be a way to do this but for the life of me i just cant figure it out.
Effectively what Id like is something that would work like this...
Ci_btn.Ci_Name.text = playlist[i]
Where i gets updated with each for loop.
Please someone help me....