08/10/21 15:44:05 TDhTN/zB
function checkKey(event:KeyboardEvent){
if(stage.focus != textField){
stage.focus = textField;
}else if(stage.focus == textField){
stage.focus = stage;
}
}
このように書いていて、キーが押されるとフォーカスがstageとtextFieldで
交互に切り替わるように書きたいんですが。
traceはもちろんしていて上の処理しか実行されないで困っています