■ 文字列を抜き出すには

onClipEvent(keyUp){
str = _root.src.text;
_root.result1.text = str.charAt(1);
_root.result2.text = str.substring(1,4);
}