Цитата:
|
Сообщение от iNils
 Код:
var myformat:TextFormat = new TextFormat ();
myformat.url = "http://www.macromedia.com";
myformat.underline = true;
this.createTextField ("mytext", 1, 100, 100, 200, 100);
mytext.multiline = true;
mytext.wordWrap = true;
mytext.border = true;
mytext.html = true;
mytext.text = "Go to Macromedia.com";
mytext.setTextFormat (6, 20, myformat);
|
Те же яйца, только в профиль

Не будет работать без html = true;
Цитата:
Edit Text: Target="_level0.mytext"
htmlText = "<P ALIGN=\"LEFT\"><FONT FACE=\"Times New Roman\" SIZE=\"12\" COLOR=\"#000000\" LETTERSPACING=\"0\" KERNING=\"0\">Go to <A HREF=\"http://www.macromedia.com\" TARGET=\"\"><U>Macromedia.com</U></A></FONT></P>"
|