> Do you have a simple test case ?

The following code demonstrates the problem:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml";
    layout="absolute">
  <mx:Style>
     Application{
      backgroundColor:white;
      color:black;
     }
    .boxStyle1{
      borderStyle:"solid";
      borderThickness:2;
      borderColor:blue;
    }
    .boxStyle2{
      paddingTop:2;
      paddingRight:2;
      paddingBottom:2;
      paddingLeft:2;
    }
  </mx:Style>
  <mx:VBox id="box"
      styleName="boxStyle1"
      rollOver="box.styleName='boxStyle1'"
      rollOut="box.styleName='boxStyle2'">
    <mx:Canvas height="50" width="150" backgroundColor="green"/>
    <mx:Text text="The quick brown fox" width="100%"/>
    <mx:Text text="jumps over the lazy dog" width="100%"/>
  </mx:VBox>
</mx:Application>

If you launch this app and repeatedly move the mouse pointer up and 
down through the box quickly you should see the behaviour I am 
talking about. This only occurs when the width of the text 
components' width properties are set to percentage values.

What do you think?

N51





------------------------ Yahoo! Groups Sponsor --------------------~--> 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to