[flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Doug Lowder
Flex 1.5? http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/ I know someone on this list has created one for Flex 2, but I'm not sure if the source is available. Doug --- In flexcoders@yahoogroups.com, Jesús Iglesias [EMAIL PROTECTED] wrote: Nobody has made

Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Michael Schmalle
Yeah, That might have been me, but the source isn't available since it's a composite component that belongs in a set comming out. Peace, MikeOn 6/9/06, Doug Lowder [EMAIL PROTECTED] wrote: Flex 1.5?

Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Michael Schmalle
PS, If all he wants to do is add buttons, he can find the answer in my last post about using addChild() with the titleBar instance and overriding layoutChrome() Peace. MikeOn 6/9/06, Michael Schmalle [EMAIL PROTECTED] wrote: Yeah, That might have been me, but the source isn't available since

[flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread jpwarmer
Hi, i did something like that with the Panel Class, let me tell you what I did... I extend the Panel class an add a few instance variables (the image for the controls) mx_internal var minimizeButton:Image; mx_internal var maximizeButton:Image; mx_internal var

Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Jeff Tapper
Take a look at the resizable panel: http://jeff.mxdj.com/sizeabletitlewindow.htm and panel with buttons:http://jeff.mxdj.com/flex_2_maxrestorepanel_class.htm for some ideas. At 11:25 AM 6/9/2006, jpwarmer wrote: Hi, i did something like that with the Panel Class, let me tell you what I did...