■ テキストフィールドをスクロールするには
サンプル1
//メインタイムラインのフレームアクション
this.scrollup_btn.onRelease
= function(){
scroll_txt.scroll--;
bottomScroll_txt.text
= scroll_txt.bottomScroll;
};
this.scrolldown_btn.onRelease
= function(){
scroll_txt.scroll++;
bottomScroll_txt.text
= scroll_txt.bottomScroll;
};
--------
サンプル2
//メインタイムラインのフレームアクション
this.hscroll_txt.onScroller
= function(_txt){
this.text = _txt.hscroll
+ "/" + _txt.maxhscroll;
};
this.scroll_txt.addListener(this.hscroll_txt);

