On 6/9/05, Dimitrios Gianninas <[EMAIL PROTECTED]> wrote:

> Of the top of my head, Not sure if you can... however, you can place the
> Panel inside a Canvas and then overlay the control of your choice in the
> position you want using its X and Y properties. 

That's probably the easiest.  You could also subclass Panel, override
its createChildren() and layoutChildren() to do the slider.

 createChildren()
 {
   super.createChildren();

  // create slider here
 }

 layoutChildren()
 {
   super.layoutChildren();

  // position slider here
 }


 
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