I've downloaded an open source flash application written in action script 2.0 that I want to complete a little bit. I want to give a new value for one of the variable that a function uses. The new value would be a string that comes from my website's output. Im not really familiar with action script, could you please help me how can I do that?
public static function start(varThatNeedsNewValue:String, options:Object):Void{
var url="http://mysite.com/flash.php";
///////////
/*Grab the output content of the url
varThatNeedsNewValue=CONTENT OF OUTPUT*/
///////////
//Then let the original script running on...
}
I tried few methods what I've found here on stackoverflow but none of them was successful, so thats why I ask you guys.