I found this issue happening for IE only,
If you don't want to lose your panel/popup when dragging up (or
outside the screen) you can simply override the 'move' function so you
can control the positioning of your panel/popup to avoid ending up in
a wrong place.
override public function move(x:Number, y:Number):void
{
if(y<0)
stopDragging(); //this will also release the window (Mouse Up)
else
super.move(x,y);
}
hope it helps
--
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en.