This did the trick:
Code:
stage.stageFocusRect = false;
_root._focusrect = false;
Whenever a web page would open from my flash the button will still have focus when changing windows back to the flash. This fixed that:
Code:
stage.addEventListener(Event.ACTIVATE, activated)
function activated(evt):void {
stage.focus = null;
}
No comments:
Post a Comment