こんにちは、私はアクション スクリプトを学んでいて、テキスト フィールドが入力された後に関数を実行するボタンを取得しようとしています。phoneNum はテキスト フィールド ID です。
//function with var testing the textfield content.
function sendInfoBtn()
{
var lengthOf = phoneNum.text.length;
if (lengthOf == 10){
sendInfo.addEventListener(MouseEvent.CLICK, doThisThing, false, 0, true);
}
}
//I'd really like to just add the lengthOf variable to this changelistener somehow
phoneNum.addEventListener(Event.CHANGE, sendInfoBtn, false, 0, true);
function realFunction(){
//things to do
}