I've a number of varibles like this


player0="name"
player1="another"
player2="more"
etc
etc

and I'd like to deal with these in a loop

ie

for (i=0; i<10; i++)
{
this="player" + i;
_root["msg"]=this
}

but this just gives me "player0", "player1" etc in msg.. and not "name" , "another"

how can I see the Substitution for "player0" ?