■ 指定座標付近の静止テキストを調べるには
//メインタイムラインのフレームアクション
theSnap
= this.getTextSnapshot();
this.onMouseDown
= function(){
var res_num = theSnap.hitTestTextNearPos(this._xmouse,
this._ymouse);
if (res_num >= 0){
result_txt.text = theSnap.getText(res_num,
res_num + 1);
}else{
result_txt.text = "";
}
};

