Page is a not externally linkable
kallekalle - 6:23 pm on Sep 5, 2009 (gmt 0)
There is only 1 main movieclip which contains this action script: onFrame (2) { onFrame (3) { onFrame (4) { onFrame (5) { onFrame (6) { Then I have added 2 images which works as pause/play buttons. It all works great in the preview, and I have tried to look at the export settings, but I cant find any thing missing :-(. I dont know if its relevant, but the buttons have these action scripts: Pause: on (press) { Play: on (press) {
It should be embedded. I use a flash compatible program called SwishMax.
mySound=new Sound();
mySound.loadSound("sound.mp3");
mySound.start(0, 5);
}
stop();
}
setLabel("pause");
mySoundPosition=_root.mySound.position/1000;
mySound.stop();
}
stop();
}
setLabel("play");
mySound.start(mySoundPosition,0);
}
gotoAndPlay("pause");
}
gotoAndPlay("play");
}