# Number

**URL:** https://forum.kirupa.com/t/number/119857
**Category:** Uncategorized
**Created:** [August 18, 2004, 4:27pm UTC](https://forum.kirupa.com/t/number/119857 "2004-08-18T16:27:57Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jazzman121](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/jazzman121/32/127_2.png) [@jazzman121](https://forum.kirupa.com/u/jazzman121)
#### Post date: [August 18, 2004, 4:27pm UTC](https://forum.kirupa.com/t/number/119857/1 "2004-08-18T16:27:57Z")

</div>

hey in flash i am loading variables from a php file

```auto

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

```auto

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

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

```

it doesnt work

if i do this

```auto

this.mytextbox.text = v;

```

the text box shows nothing ☹ dont know why please help…
