Re: [flexcoders] calling custom component methods inside the parent application

2006-06-14 Thread Luís Gustavo Sanabio
            Thanks Chaitu.     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Lu�s Gustavo SanabioSent: Wednesday, June 14, 2006 6:37 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] calling custom component methods ins

RE: [flexcoders] calling custom component methods inside the parent application

2006-06-14 Thread Chaitu Vadlapatla
@yahoogroups.com Subject: Re: [flexcoders] calling custom component methods inside the parent application   What is raga? Maybe ID is missing. Gustavo Sanabio   2006/6/13, Jeremy Lu <[EMAIL PROTECTED]>:   try this:   

Re: [flexcoders] calling custom component methods inside the parent application

2006-06-14 Thread Luís Gustavo Sanabio
What is raga? Maybe ID is missing. Gustavo Sanabio  2006/6/13, Jeremy Lu <[EMAIL PROTECTED]>: try this:    public function dummy ()    {         cbSelected = parent.raga.selected;                      

RE: [flexcoders] calling custom component methods inside the parent application

2006-06-14 Thread Chaitu Vadlapatla
: [flexcoders] calling custom component methods inside the parent application     try this:    public function dummy ()    {         cbSelected = parent.raga.selected

Re: [flexcoders] calling custom component methods inside the parent application

2006-06-13 Thread Jeremy Lu
try this:    public function dummy ()    {         cbSelected = parent.raga.selected;                             //or                               cbSelected = Application.application.raga.selected;

[flexcoders] calling custom component methods inside the parent application

2006-06-13 Thread Chaitu Vadlapatla
Hi, I am trying to call a method which resides in my MXML component inside the main MXML file and wont work. Any help would be appreciated.     Main Application         Component MXML