Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm loading an as2 game into a as3 movie. No communication other than to play the game in the movie. I'm using a loader class.

function startLoad() { var mRequest:URLRequest = new URLRequest(correctURL.toString()); mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler); mLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler); mLoader.load(">http://www.boomerang-tv.ro/sites/www.boomerang-tv.ro/files/flash/data/Scooby_Doo_-_Downhill_Dash/scoobydownhill-BM.swf"); }

function onCompleteHandler(loadEvent:Event) { addChild(loadEvent.currentTarget.content); }

When it finishes loading I get this error.

*ArgumentError: Error #2180: It is illegal to move AVM1 content (AS1 or AS2) to a different part of the displayList when it has been loaded into AVM2 (AS3) content. at flash.display::DisplayObjectContainer/addChild() at main_fla::MainTimeline/onCompleteHandler()*

Any ideas. I'm sure its simple it's just late :(

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

Try adding the loader instead of the loader content.

function onCompleteHandler(loadEvent:Event) 
{ 
   addChild(loadEvent.currentTarget.loader); 
}
share|improve this answer
1  
I don't you... but I love you... thanks – Hornerlas Sep 22 '10 at 21:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.