On 4/20/05, Matthew Shirey <[EMAIL PROTECTED]> wrote:
>  I think I know what you mean, I'll give it a shot.  Thank you,

In case I was not clear, by "extend" I meant really subclass the
component class in ActionScript and override the measure function:

  class MyMenuBar extends MenuBar
  {
    function measure():Void
    {
        super.measure();

        // set _measuredPreferredHeight here to the right value
    }
  }

And use it in your MXML code as usual:

  <MyMenuBar>
    ...
  </MyMenuBar>

-- 
[EMAIL PROTECTED]
http://manish.revise.org/


 
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