27-04-2006, 09:17
|
|
|
חבר מתאריך: 30.12.03
הודעות: 26
|
|
בעיית סאונד קלה
שלום רב לכל הפלאשיסטים
יש ל בעיה עם סאונד
אני טוען אותו על ידי הפקודה loadSound אבל אחרי פעם אחד שהוא מנגן הוא עוצר ולא חוזר
קוד:
var mysound =new Sound()
mysound.loadSound("music2.mp3", true)
mysound.start(0,99)
_root.playbutten.onPress=function()
{
_root.music.gotoAndPlay("go");
_root.mysound.setVolume(100)
playbutten.enabled=false;
stopbutten.enabled=true;
mysound.start(0, 99);
}
_root.stopbutten.onPress =function()
{
_root.music.gotoAndStop("start");
_root.mysound.stop();
playbutten.enabled=true;
stopbutten.enabled=false;
}
אני לא מבין למה הוא לא חוזר בלופ , מה אני צריך להוסיף עוד
אשמח לתגובה
בברכה
יונתן
|