>From docs:
public function getDefinitionByName(name:String):Object 
Returns a reference to the class object of the class specified by the
name parameter. 

It always returns 'class object' - instance of the Class class. Why
getDefinitionByName returns Object type?
I must always write:
var ClassRef : Class = Class( getDefinitionByName(class) );
var instance : Object = new ClassRef();

but i might have:
var ClassRef : Class = getDefinitionByName(class);
var instance : Object = new ClassRef();






------------------------ Yahoo! Groups Sponsor --------------------~--> 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
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