song_sound.start(1,9999)

BioDread

Banned
این کد من چه مشکلی داره که آهنگ loop نمیشه فقط یک بار loop میشه
PHP:
musicnum = 1;
var song_sound:Sound = new Sound();
song_sound.loadSound("music"+musicnum+".mp3",true);
song_sound.start(1,9999);
this.createTextField("volume_txt", 10, 30, 30, 200, 20);
volume_mc.top = volume_mc._y;
volume_mc.bottom = volume_mc._y;
volume_mc.left = volume_mc._x;
volume_mc.right = volume_mc._x + 70;
volume_mc._x += 70;
volume_mc.handle_btn.onPress = function() {
    startDrag(this._parent, false, this._parent.left, this._parent.top, this._parent.right, this._parent.bottom);
};
volume_mc.handle_btn.onRelease = function() {
    stopDrag();
    var level:Number = Math.ceil(this._parent._x - this._parent.left);
    this._parent._parent.song_sound.setVolume(level);
    this._parent._parent.volume_txt.text = level;
};
volume_mc.handle_btn.onReleaseOutside = function() {
 stopDrag();
    var level:Number = Math.ceil(this._parent._x - this._parent.left);
    this._parent._parent.song_sound.setVolume(level);
    this._parent._parent.volume_txt.text = level;
};
 

<3pehr>

Active Member
سلام کامران جان
من همون شب که گفته بودم جواب دادم اما نمیدونم چرا نیست.
مشکل تو لود کردنته،لوپ برای streaming soundجواب نمیده،یعنی باید اینجوری لود کنی:
کد:
[COLOR=#000000][COLOR=#0000BB]song_sound[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]loadSound[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]"music"[/COLOR][COLOR=#007700]+[/COLOR][COLOR=#0000BB]musicnum[/COLOR][COLOR=#007700]+[/COLOR][COLOR=#DD0000]".mp3"[/COLOR][COLOR=#007700],[/COLOR][COLOR=#0000BB]false[/COLOR][COLOR=#007700]);[/COLOR][/COLOR]



موفق باشی
سپهر
 
بالا