I have the following actionscript 3.0 code that runs fine in Flash development environment.
This permits me to run a swf movieclip from within an swf.
var movieLoader:Loader = new Loader();
addChild(movieLoader);
var movieURL:URLRequest = new URLRequest("mymovie.swf");
movieLoader.load(movieURL);
BTW... In the flash environment, I have imported the mymovie.swf directly into the stage, so it is not an external file.
But when I test the code in the Scaleform Launcher see the error message:
Warning: Failed loading SWF "mymovie.swf": Actionscript version mismatch
However when I searched through the Scaleform Flash Support Overview (PDF document), it indicates that URLRequest is supported.
Perhaps I'm missing something here? But more importantly... What is a viable workaround for the code I'm trying to implement. Any suggestions are sincerely appreciated!!!
Thanks...........




Reply With Quote

Bookmarks