2010年11月11日 星期四

[AS3] 在文字欄位TextField類別實體顯示HTML文字_ TextField.htmlText 屬性+autosize



package 
{
 //
 import flash.text.TextField;
 import flash.text.TextFieldAutoSize;
 import flash.display.Sprite;
 //
 public class TextFieldSample_2 extends Sprite
 {
  //建構myTextField為TextField類別的實體
  private var myTextField:TextField = new TextField();
  //宣告newText為字串變數
  private var newText:String;
  //
  public function TextFieldSample_2()
  {
   //TextFieldAutoSize.LEFT --> 自動欄位寬度,文字靠左。
   myTextField.autoSize = TextFieldAutoSize.LEFT;
   newText = "< p>
這段< b>文字< /b>< i>格式化< /i>為< u>HTML< /u>文字。< /p>
";
   //htmlText屬性 --> 包含 HTML 表示方式的文字欄位內容。
   myTextField.htmlText = newText;
   addChild(myTextField);
   myTextField.x = 160;
   myTextField.y = 80;
  }
 }
}


Flash Player 支援哪些 HTML 標籤:(快照圖像引用自下方連結)





沒有留言: