Is there any way to listen for stage events like MOUSE_LEAVE, MOUSE_MOVE, ect?
I have tried
public function initializePlugin(view:AbstractView):void
{
stage.addEventListener(Event.MOUSE_LEAVE, onMouseLeave_stage);
//or
view.skin.stage.addEventListener(Event.MOUSE_LEAVE, onMouseLeave_stage);
}
but events seems not to fire (stage is not null) ;/
Any ideas?

@panel:
Your plugin will be placed on top of everything else, so you should be able to simply add a transparent sprite / movieclip and listen for events there.