テキストフィールドでHTMLタグを使用するには

サンプル1
//ボタンアクション
on (release) {
this._txt.html = true;
this._txt.condenseWhite = false;
this._txt.htmlText = "<b>HapHands.com</b>\n →<font color='#0000FF'><a href='http://www.haphands.com/'>ジャンプ</a></font>";
}
--------
サンプル2
//メインタイムラインのフレームアクション
this._txt.html = true;
this._txt.htmlText = "<b>MovieClip Animation</b><img src='star' id='star_mc'>";
this.play_btn.onRelease = function(){
_txt.star_mc.play();
};
this.stop_btn.onRelease = function(){
_txt.star_mc.stop();
};
・サンプルを実行
・サンプルをダウンロード
Action Script逆引きクイックリファレンス 説明などは本書を参考にしてください。