Показать сообщение отдельно
Старый 23.02.2007, 12:31
this.create вне форума Посмотреть профиль Отправить личное сообщение для this.create Найти все сообщения от this.create
  № 2  
Ответить с цитированием
this.create

Регистрация: Feb 2007
Сообщений: 264
Код:
//
var soundMc:MovieClip = this.createEmptyMovieClip('soundMc', this.getNextHighestDepth());
var mySound:Sound = new Sound(soundMc);
//
mySound.attachSound('sound1');
mySound.start();
//
mySound.onSoundComplete = function():Void  {
    this.attachSound('sound2');
    this.start();
    this.onSoundComplete = null;
};
Проверил, все работает.