180bpm

textField에 포커스가 들어갔을때 포커스를 아예 죽이는 방법에 대해 본문

Flash/Scaleform

textField에 포커스가 들어갔을때 포커스를 아예 죽이는 방법에 대해

powdersnow 2013. 5. 15. 16:12

이것밖에 방법이 없는걸까..;




//code start
FocusHandler.instance.onSetFocus(textField, _root, 0);    // 안됨
FocusHandler.instance.setFocus(_root, 0);                // 안됨
Selection.setFocus(this);                                //안됨

this.createEmptyMovieClip("killFocus", this.getNextHighestDepth()); //얘만 됨
this["killFocus"].onRelease = function() {  }
Selection.setFocus(this["killFocus"]);
this["killFocus"].removeMovieClip();
//code end


Comments