I know I can detect flash gaining and losing focus with these callbacks:
stg.addEventListener( Event.DEACTIVATE, deactivateCb, false, 0, true );
stg.addEventListener( Event.ACTIVATE, activateCb, false, 0, true );
But is there anyway to directly query flash if it has focus or not?
(Trying to figure out if flash has focus when starting up...)