Attempting to load up an swf inside my file and I'm getting the following error:
TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@32264f91 to flash.display.Loader.
at flash.display::Sprite/constructChildren()
at flash.display::Sprite()
at flash.display::MovieClip()
at ComicBook_003_fla::MainTimeline()
Here is my code:
var loader:Loader = new Loader();
loader.load(new URLRequest("Avoider.swf"));
loader.x = 100;
loader.y = 100;
addChild(loader);