Pausing Sound
Pada section ini ada sedikit perubahan, tambahkan variable :
var lastPosition:Number = 0;
variable tersebut nantinya berfungsi utuk mendeteksi posisi akhir dari suara ketika dimainkan.
Maka pada Playing Sound dan Stopping Sound scriptnya menjadi :
//Playing Sound
function clickPlay(event:MouseEvent) {
movie.speakerLeft.gotoAndStop("loncat");
movie.speakerRight.gotoAndStop("loncat");
myChannel = mySound.play(lastPosition);
}
function clickStop(event:MouseEvent) {
movie.speakerLeft.gotoAndStop("diam");
movie.speakerRight.gotoAndStop("diam");
lastPosition = 0;
myChannel.stop();
}
Lalu untuk script pada button Pause :
Pausing Sound
function clickPause(event:MouseEvent) {
movie.speakerLeft.gotoAndStop("diam");
movie.speakerRight.gotoAndStop("diam");
lastPosition = myChannel.position;
myChannel.stop();
}
Read more: http://tutorial-kecil.com/2011/04/26/action-script-3-0-load-sound.html#ixzz2RYqEX19j
Tidak ada komentar:
Posting Komentar