Embedding Content in Text : HtmlText : TextField Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » TextField » HtmlText »

 

Embedding Content in Text


 

package{
  import flash.display.Sprite;
  import flash.text.*;  
  public class Main extends Sprite{
    public function Main(){
        var tContent:TextField = new TextField();
        tContent.border = true;

        tContent.htmlText = "A picture of a lake: <img width='180' height='120' src='http://www.navioo.com/asb/image2.jpg'>";
        addChild(tContent);

    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo TextField
» HtmlText