[flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Tim Hoff
Hi Wally, Pretty close, just a few minor tweaks needed: // add the event parameter public function changeStartType( event:Event ):void // change to group addressRB.group = startLocation; airportRB.group = startLocation; protected override function updateDisplayList(unscaledWidth:Number,

[flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread arno.manders
Try addressRB.setActualSize(addressRB.measuredWidth,addressRB.measuredHeight) airportRB.setActualSize(addressRB.measuredWidth, addressRB.measuredHeight); in the updateDisplayList() function --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote:

re: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Wally Kolcz
the concept site at http://www.med.umich.edu/prmc/landing/helipad From: Tim Hoff timh...@aol.com Sent: Wednesday, June 24, 2009 8:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Extending Custom Panel

[flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Tim Hoff
From: Tim Hoff timh...@... Sent: Wednesday, June 24, 2009 8:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help Hi Wally, Pretty close, just a few minor tweaks needed: // add the event parameter public function

re: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Wally Kolcz
24, 2009 8:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help You need to add maps as a child in createChildren(). -TH --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Thanks! The labels are now showing perfectly

[flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Tim Hoff
: Tim Hoff timh...@... Sent: Wednesday, June 24, 2009 8:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help You need to add maps as a child in createChildren(). -TH --- In flexcoders@yahoogroups.com, Wally Kolcz wkolcz@ wrote

re: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Wally Kolcz
@yahoogroups.com Subject: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help Ok, so take maps out of the RadioButtonPanel AS component and make the startLocation RadioButtonGroup public. Next create a Event in the component, that will be dispatched when the radio buttons are clicked