movieClip.onData{
movieClip.onData{
Out of context: Reply #7
- Started
- Last post
- 8 Responses
- unfittoprint0
ok.
regarding variables I still prefer to use the Load Vars object. something like:
myVars = new LoadVars();
myVars.onLoad = function(sucess){
if(sucess){
doThis();
} else {
trace ("error!!");
}
}doThis= function () {
trace("sucess!!")
};//initiate
myVars.load("url.php?var=etc");stop();