I keep getting this error in a Flash instrument I’m making:
1024 overriding a function that is not marked for override
The error was found in this line:
public function stop():void
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.
The error indicates that you have a method named
stopin base class. So in derived class you need to addoverridein the method declaration.