While compiling mxml file ,I’m getting the following error..
Unable to locate specified base class mx.core.WindowedApplication
Its working for <mx:Apllication> But its not working for windowedApplication
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.
Well, there’s nothing wrong with your Flex SDK / AIR installation it just your probably using:
mxmlc
when you should be using:
amxmlc
The first command ‘mxmlc’ is to compile the MXML to SWF, whereas the second ‘amxmlc’ is to compile the MXML to the AIR App platform.
Hope this helps!