Показать сообщение отдельно
Старый 13.04.2006, 03:30
Madasan вне форума Посмотреть профиль Отправить личное сообщение для Madasan Найти все сообщения от Madasan
  № 11  
Ответить с цитированием
Madasan
 
Аватар для Madasan

Регистрация: Jun 2005
Адрес: в Питере
Сообщений: 981
Код:
_root.onLoad = function() {
	loadVariablesNum("tracks.txt", 0);
	songtitle = musictitle.split(":");
	totalSongs = songtitle.length;
	currentSong = 0;
	mySound = new Sound();
	mySound.loadSound(songtitle[0], true);
	mySound.start();
	mySound.onSoundComplete = function() {
		if (currentSong<totalSongs) {
			currentSong++;
		} else {
			currentSong = 0;
		}
		this.loadSound(songtitle[currentSong], true);
		this.start();
	};
};
__________________
Делай всё быстро, но не торопись!.._/*o|o*\_.