[flexcoders] Re: rollover is blinking

2009-03-22 Thread carloscarvalhar
ok, i got it. i had to check in rollOut if the mouse is over the hitare of the components. i'm posting here as reference if someone else needs this. public function toogleVisiOut():void{ if (! (container.hitTestPoint(stage.mouseX, stage.mouseY, true) || myComponent.hitTestPoint(stage.mouseX, sta

RE: [flexcoders] Re: rollover is blinking

2009-03-22 Thread Tracy Spratt
unday, March 22, 2009 8:48 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: rollover is blinking Hi, Even using rollOver/rollOut the problems still exist. Trough debug i can't notice what is happening. i think the problem is happening because the first rollover set visible a

[flexcoders] Re: rollover is blinking

2009-03-22 Thread carloscarvalhar
groups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of carloscarvalhar > Sent: Saturday, March 21, 2009 1:49 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: rollover is blinking > > > > Hi, > > I tried what you said, but didn

RE: [flexcoders] Re: rollover is blinking

2009-03-21 Thread Tracy Spratt
lable _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of carloscarvalhar Sent: Saturday, March 21, 2009 1:49 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: rollover is blinking Hi, I tried what you said, but didn't worked, it's blinking

[flexcoders] Re: rollover is blinking

2009-03-21 Thread carloscarvalhar
Hi, I tried what you said, but didn't worked, it's blinking yet. Here's my code: public function toogleVisiOver():void{ if(! mycanvas.visible){ mycanvas.visible =true; } } public function toogleVisiOut():void{ if(mycanvas.visible){ mycanva