■ テキストフィールドの内容が変更されたときに処理を実行するには
サンプル1
//メインタイムラインのフレームアクション
this.input_txt.onChanged
= function(){
_txt.text = "onChanged:" +
this.length;
};
--------
サンプル2
//メインタイムラインのフレームアクション
this.scroll_txt.onScroller
= function(){
_txt.text = "onScroller:" +
this.scroll + "/" + this.maxscroll;
};
this._mc.onScroller =
function(_txt){
this._y = _txt.scroll
/ _txt.maxscroll * 240;
};
this.scroll_txt.addListener(this._mc);

