hey… another problem from me…
i am trying to position an external swf after i load it but it will not move… again, any ideas?
// Make request and loader
var request:URLRequest = new URLRequest("cube_finished.swf");
var loader:Loader = new Loader();
// This is done after the swf is loaded.
function finished_loading (e:Event) {
var externalMovie = MovieClip(loader.content); // cast 'DisplayObject' to 'MovieClip'
stage.addChild(externalMovie); // add your swf directly to the stage
externalMovie.gotoAndPlay("start"); // Now you can use all MovieClip methods!
externalMovie.x=200;
externalMovie.y=200;
}
// Tell the loader to call 'finished_loading' after the swf is loaded.
import flash.events.Event;
loader.contentLoaderInfo.addEventListener(flash.events.Event.COMPLETE, finished_loading);
// Start loading.
loader.load(request);
thanks again in advance