?>
ActionScript kof ekleyerek eklediğimiz butonları
[hidepost]
seçerek butonların eklediğimiz framede actions paneli F9 acarak verdiğim kıdları ekleyelim. Butonların instance name pencerelerine Play butonun (basla) stop butonun (son) yazalım kodları incelersek zaten anlayabiliriz ekli FLA indirebilirsiniz
function bitti(event:Event):void{
SoundMixer.stopAll();
}
son.addEventListener(MouseEvent.CLICK,bitti)
function ses(event:Event):void{
SoundMixer.stopAll();
var sesci:URLRequest=new URLRequest(“bizim.mp3″)
var s:Sound=new Sound(sesci);
s.play();
}
basla.addEventListener(MouseEvent.CLICK,ses);
Not:eklemek istediğiniz mp3 swf bulunduğu klasör içinde olması gerekmektedir
[/hidepost]
]]>