RE: [flexcoders] Problems with getChildByName();

2009-05-15 Thread Alex Harui
getChildByName searches the parent for a match with a child's .name property. A child's id property is not always the name and is a document reference (the outermost tag in the MXML file) so a parent won't always have a child with the name of the child's id. Usually in a script block, because

RE: [flexcoders] Problems with getChildByName();

2009-05-15 Thread Laurence MacNeill
At 02:52 AM 5/15/2009, you wrote: getChildByName searches the parent for a match with a child's .name property. A child's id property is not always the name and is a document reference (the outermost tag in the MXML file) so a parent won't always have a child with the name of the child's id.

RE: [flexcoders] Problems with getChildByName();

2009-05-15 Thread Alex Harui
Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Laurence MacNeill Sent: Friday, May 15, 2009 10:34 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Problems