PDA

View Full Version : number



jazzman121
August 18th, 2004, 12:27 PM
hey in flash i am loading variables from a php file



loadVariables("page.php?"+random(999),this);



now the php page returns

&count=3&btn0=11&btn1=14&btn2=18

back in flash when i test out to see if the variables are loaded into flash

like this



this.mytextbox.text = count;


in flash when i preview it shows 3 in the text box ( thus the variable is loaded into flash ..


now right below that

i do this



v= count;
for(i=0; i<v; i++) {
trace( this is i );
}


it doesnt work

if i do this



this.mytextbox.text = v;


the text box shows nothing :( dont know why please help...