flash 7, loadvariables!
flash 7, loadvariables!
Out of context: Reply #3
- Started
- Last post
- 7 Responses
- unfittoprint0
try using the loadVars object instead.
myVars = new LoadVars();
myVars.onLoad = function(sucess){
if(sucess){
textBox.text = this;
} else {
textBox.text = "error";
}
},myVars.load("ad_projects.php");
//remember, a lot of security has been implemented in the new flash player, making it more dificult to acess external [other servers] files. so I suppose your php file rests in your own server.