Thank you Alex, it was just that easy. Just to give anyone else a
heads up, you must wait until the ApplicationComplete event fires and
then do something like this:
private function onAppComplete():void
{
var mouseCatcher:DisplayObject = SystemManager(
this.systemManager ).rawChildren.getChildAt( 0 );
mouseCatcher.visible = false;
}
--- In [email protected], "Alex Harui" <[EMAIL PROTECTED]> wrote:
>
> Try setting mouseCatcher.visible=false
>
>
>
> ________________________________
>
> From: [email protected]
[mailto:[EMAIL PROTECTED] On
> Behalf Of actionscript_czar
> Sent: Tuesday, April 22, 2008 9:11 AM
> To: [email protected]
> Subject: [flexcoders] mouseCatcher getting in the way
>
>
>
> I made a Flex App that is getting loaded into a flash movie.
> Unfortunately when the Flex App is loaded into the flash movie,
some
> of the flash movie's mouse events don't work anymore. Most notably
> all of the one's to the right and bottom of the Flex movie.
>
> I've tracked it down to the mouseCatcher created by the
SystemManager
> but I can't figure out what to do with that information.
>
> This must be easier and I must just be overthinking it. Has anyone
> run into this problem and what did you do?
>