I’m using the following script on my website to play an mp3 in flash. To instantiate the flash object I use the swfobject framework in a javascript function. When the function is called the player is created and added to the page.
Web sitesinin kalanı php ve php fonksiyonu vardır ile bu script çağırarak sayfası dahil ediliyor. Tüm diğer kullanılan komut 'php master' sayfa vardır
var playerMp3 = new SWFObject("scripts/player.swf","myplayer1","0","0","0");
playerMp3.addVariable("file","track.mp3");
playerMp3.addVariable("icons","false");
playerMp3.write("player1");
var player1 = document.getElementById("myplayer1");
var status1 = $("#status1");
$("#play1").click(function(){
player1.sendEvent("play","true");
$("#status1").fadeIn(400);
player4.sendEvent("stop","false");
$("#status4").fadeOut(400);
player3.sendEvent("stop","false");
$("#status3").fadeOut(400);
player2.sendEvent("stop","false");
$("#status2").fadeOut(400);
});
$("#stop1").click(function(){
player1.sendEvent("stop","false");
$("#status1").fadeOut(400);
});
$(".closeOver").click(function(){
player1.sendEvent("stop","false");
$("#status1").fadeOut(400);
});
$(".accordionButton2").click(function(){
player1.sendEvent("stop","false");
$("#status1").fadeOut(400);
});
$(".accordionButton3").click(function(){
player1.sendEvent("stop","false");
$("#status1").fadeOut(400);
});
$(".turnOffMusic").click(function(){
player1.sendEvent("stop","false");
$("#status1").fadeOut(400);
});
});
I have a play-button with the id ‘#play1’ and a stop-button with the id ‘#stop1’ on my page. A div on the same page has the id ‘#status1’ and a little image of a speaker is in the div. When you push the playbutton, the div with the speaker is fading in and when you push the stopbutton, the div with the speaker is fading out, very simple. And it works as I want it to do.
Ama sorun bir şarkı bittiğinde, olan, hoparlör çıkışı solmaz. Bunun için basit bir çözüm var mı? Zaten sayfasından flash player almak ve üzerinde 'IsPlaying' aramak için SWFObject çerçevesini kullanarak çalıştı, ama ben 'SWFObject' bulunamıyor ki hatayı alıyorum. Tüm ihtiyacım doğru yönde küçük bir itme ya da ben doğru oynamaya ve bitmiş ise, hoparlör görüntü solmaya liderliğindeki bir javascript işlevini çağırmak eğer kontrol (flaş) çalmakta ses çalar nasıl alabilirim bana gösteren bir örnek -tekrar dışarı. Burada birisi bana yardımcı olabilir umuyoruz