package{
import flash.display.Sprite;
import flash.text.*;
publicclass Main extends Sprite{
public function Main(){
var tContent:TextField = new TextField();
tContent.htmlText = "A picture of a lake: <img id='mImage' width='180' height='120' align='center' vspace='0' hspace='0' src='http://www.java2s.com/asb/image2.jpg'>";
addChild(tContent);
}
}
}