Hi everybody.
I have a .txt file with 90 paramters like:
[FONT=courier new]st75=15&st2=34&st14=3& …[/FONT]and so on until 90.
They are not even sorted from st1 to st90.
I need to be able to get them in a for loop, like:
for(var i:Number=1; i<=90; i++) {
var stat = myLoader.data."st"+i;
trace("st"+i+" = "+stat);
}
Obviously this will not work, so anybody has any ideea on how to do this?
I’ve done some searching but I’m afraid I don’t even know what keywords to search for.
Thank you.