I have an array of strings. Each string is a name of a class. How can I call the library item with the class name that corresponds to the string in the array?
Thanks in advance
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the function
getDefinitionByName, found in the package flash.utils.Usually the code will look something like this:
You can also cast
instanceto a type of your choice:See this link for reference.