Re: How to pass parameters from php to flash?
Posted: Sat Nov 05, 2011 10:18 am
this["variable"+i] is the same as saying:
this.variable1
this.variable2
this.variable3
etc...
so just use it as such. It works the exact same way, it's just a little more roundabout so you can have some control over masses of variables with only a few lines of code.
this["variable"+i] will be something like this.variable1 so make sure &variable1= is being passed through PHP
this.variable1
this.variable2
this.variable3
etc...
so just use it as such. It works the exact same way, it's just a little more roundabout so you can have some control over masses of variables with only a few lines of code.
this["variable"+i] will be something like this.variable1 so make sure &variable1= is being passed through PHP