Loader Class: How can I go to specific scenes and frames?
Is there a way using the loader class to go to a specifc scene and frame in the file that I am loading? For example, I would like to go to frame 3 in scene 2 in the file I'm loading "File.swf"
Here is the code that I am using to load the file. Now I would like to go to a specific frame and scene within in the file:
var LoaderHome:Loader = new Loader();
LoaderHome.load(new URLRequest("File.swf"));
addChild(LoaderHome);
Questions #2
Also, when I add the file "File.swf" should I remove the existing movie for performance/memory management? If so, how would I remove a child where the code is another movie?