I’m using the gskinner.com bridge to load and talk between a as2.0 object in as3.0 . The library works smoothly. If I upload the html it works smoothly.
But when I embed it as using fb:swf on facebook, the as2.0 object stops loading, any clues?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Found the solution:
var myLoader:Loader = new Loader();
addChild(myLoader);
var url:String = “http://flashtestapp.varheroes.com/as2.swf”
var urlReq:URLRequest = new URLRequest(url);
myLoader.load(urlReq);
Apparently fb:swf doesn’t like relative urls, if I load the swf from the same folder it doesn’t work but giving a absolute url does.