views:

356

answers:

1

Hi,

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?

A: 

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.

Fahim Akhter