Come posso far eseguire uno script
quando si arriva ad un determinato frame?
Vorrei che arrivati sul FRAME 15 eseguisse questo script:
mySound = new Sound();
mySound.onSoundComplete = function() {
this.loadSound("audio.mp3", true);
};
mySound.onSoundComplete();
mySound.start();
Grazie,
Larry