
17.08.2005, 12:01
|
|
Регистрация: Jun 2003
Адрес: Vladimir
Сообщений: 1,119
|
Или можно так:
Загнать звук в библиотеку с Linkage "sound"
на кадр:
sound_but = new Sound();
sound_but .attachSound("sound");
Делаешь кнопку с Instance name "but"
на кадре:
but.onRollOver = function() {
mySound.start ("sound", 1);
}
but.onRelease = function() {
mySound.start ("sound", 1);
}
По-моему так... Должно работать...
|