I keep getting this error in the Flash tool that I am doing:
1024 overriding a function that is not marked for overriding
An error was found in this line:
public function stop():void
The error indicates that you have a method called stop in the base class. Therefore, in a derived class, you need to add override to the method declaration.
stop
override
public override function stop():void ^
You cannot use the name of a stop function in a class that extends MovieClip.
Source: https://habr.com/ru/post/911955/More articles:Android Service.startForeground DOES NOT respect the uniqueness of the notification identifier - androidUninstall Android application by yourself - androidfunction table vs switch in golang - goIs the class file created by javac immutable? - javacIs it possible for the same javac compiler to compile the same set of source files, but create class files of different checksums? - javahow to copy between folders and parent folder without full path - linuxHow to write a simple honest semaphore? - javaSetting the default value in the Symfony2 radio button select box - symfonyAccess to parts of multipart / form-data submission request in Java REST web service - javaManually translating code from one language to another - cAll Articles