flash preloader problem
Posted: Mon Dec 07, 2009 6:34 am
Hi,
I have a problem with my preloader. You can see it here: http://www.moko.lt/Portals/0/biologija2/0pagrmeniu.html. for example press the upper button and then the one with the running skeleton on the left.
here is my preloading code:
when its loading .swf file the sound comes firs. How can I fix that?
I have a problem with my preloader. You can see it here: http://www.moko.lt/Portals/0/biologija2/0pagrmeniu.html. for example press the upper button and then the one with the running skeleton on the left.
here is my preloading code:
Code: Select all
vid1_btn.addEventListener(MouseEvent.CLICK,krauna1);
function krauna1(evt:Event):void {
var krauna: Loader=new Loader();
krauna.load(new URLRequest("h001.swf"));
krauna.contentLoaderInfo.addEventListener(Event.COMPLETE,pakrove);
flash.media.SoundMixer.stopAll();
stage.addChild(preloaderis)
}
function pakrove(aa:Event) {
stage.removeChild(preloaderis)
var pav1:Sprite=Sprite(aa.target.content);
stage.addChildAt(pav1,1);
stage.removeChildAt(0);
}