■ 文字列を連結するには

onClipEvent(keyUp){
str1 = _root.src1.text;
str2 = _root.src2.text;
_root.result.text = str1 + str2;
}