sanaluser
Üye
- Kayıt
- 28 Haziran 2009
- Mesaj
- 1
- Tepki
- 0
actionscript 2,0 da yaptığım siteye ses ekledim butonlarlada ses kontrolünü sağladım fakat site yüklendiğinde müzik çalmıyor play butonuna basınca çalmaya başlıyor site yüklendiği anda müziğin çalmasını istiyorum yardımcı olabilirseniz sevinirim
kodları şöyle
bg_sound=new Sound (this);
bg_sound.attachSound(ses_dosya_ismi);
start = true;
pause = true;
ofset = 0;
play_btn.onPress = function(){
if (start){
bg_sound.start(ofset, loop);
}
start = false;
pause = true;
};
stop_btn.onPress = function(){
bg_sound.stop();
start = true;
ofset = 0;
};
pause_btn.onPress = function(){
if (pause){
ofset = bg_sound.position / 1000;
bg_sound.stop();
}
start = true;
pause = false;
};
kodları şöyle
bg_sound=new Sound (this);
bg_sound.attachSound(ses_dosya_ismi);
start = true;
pause = true;
ofset = 0;
play_btn.onPress = function(){
if (start){
bg_sound.start(ofset, loop);
}
start = false;
pause = true;
};
stop_btn.onPress = function(){
bg_sound.stop();
start = true;
ofset = 0;
};
pause_btn.onPress = function(){
if (pause){
ofset = bg_sound.position / 1000;
bg_sound.stop();
}
start = true;
pause = false;
};