Detect it with Javascript? Javascript has events onFocusand onBlur,
var hasFocus=false;
DomElem.addEventListener('focus', function(e){
hasFocus=true;
},false);
DomElem.addEventListener('blur', function(e){
hasFocus=false;
},false);
I am not sure how to do this in AS ...
source
share