
27.10.2005, 16:20
|
|
Регистрация: 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>";
|