7 Haziran 2013 Cuma

Flash ActionScript 3.0 Ses Çalma

var muzikLink:URLRequest = new URLRequest("ses.mp3");
var muzik:Sound = new Sound();
muzik.load(muzikLink);

/*
destekleriniz için
http://flashandactionscript3.blogspot.com/ sitesini ziyeret ediniz.
*/
muzik.addEventListener(Event.COMPLETE, yukle);
function yukle(event:Event):void
{
muzik.play();
}

Hiç yorum yok:

Yorum Gönder