Creating Flex Component Object when knowing only Class Name of the component
If you need to get a reference to a class in ActionScript 3, but you know only the class name, then in that case you can use the "getDefinitionByName("class name string")" to create an instance of the class.getDefinitionByName method is available in flash.utils packageThis can be easily understandble by the simple example, import flash.utils.getDefinitionByName; var ...
Read more...