I have a problem.

In my application, there is a TabNavigator, which creates its 
children in the running time, but unfortunately all the children 
components are my customized components.

for example : 
          
     I have a customized component, named "myComponent",
if I use 
     var component = eval("myComponent");
     tabNavigator.createChild(component,undefined);
  it's fine. But if I use
     var temp = "myComponent";
     var component = eval(temp);
     tabNavigator.createChild(component,undefined);
  it failds;

Can anyone helps me? thanks.
   
      









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to