Hi,
I have a problem with my preloader. You can see it here:
http://www.moko.lt/Portals/0/b…..meniu.html. for example press the upper button and then the one with the running skeleton on the left.
here is my preloading code:
- 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);
- }
when its loading .swf file the sound comes firs. How can I fix that?