Тема: htmlText
Показать сообщение отдельно
Старый 27.10.2005, 16:20
BlackLazyCat вне форума Посмотреть профиль Отправить личное сообщение для BlackLazyCat Найти все сообщения от BlackLazyCat
  № 2  
Ответить с цитированием
BlackLazyCat

Регистрация: Oct 2005
Сообщений: 2
Прямиком из флэшового хелпа.

var myMP3:Sound = new Sound();
function playMP3(mp3:String) {
myMP3.loadSound(mp3, true);
myMP3.onLoad = function(success) {
if (!success) {
// code to handle errors here
}
};
}
this.createTextField("list_txt", this.getNextHighestDepth(), 0, 0, 200, 100);
list_txt.autoSize = true;
list_txt.html = true;
list_txt.multiline = true;
list_txt.htmlText = "<a href=\"asfunction: playMP3,track1.mp3\">Track 1</a><br>";