flash php question
flash php question
- Started
- Last post
- 3 Responses
- onehugeeye
does anyone know if when I'm retrieving data from a php file. is there a way to ask flash to make sure he got the info before doing anything else?...
- unfittoprint0
use a LoadVars object.
then create an onData event like
myVars.onData=function(sucess){
if (sucess){
dothis()
} else {
trace("ooops")
}
}
- quik0
damn, beat me to it unfit.
- onehugeeye0
that's the one! cheers unfit!