Re: [flexcoders] Re: custom Panels original size

2006-11-07 Thread Daniel Freiman
i don't know if this will work, but try childrenCreated(), if all else fails you can override measure like this:override protected function measure():void {   super.measure();   if (isNaN(originalHeight)) {   originalHeight = height;   }}this will only set originalHeight the first time it is

RE: [flexcoders] Re: custom Panels original size

2006-11-06 Thread Gordon Smith
'this' is always the component or application represented by the top tag in the file.   - Gordon   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jnewport Sent: Monday, November 06, 2006 1:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re