I'm trying to override dispatchEvent(), with no success in the Flash IDE. Reviewing Adobe docs on the method, it should simply be:

override function name()

As demonstrated by Grant Skinner, this is commonly and easily performed:

override public function dispatchEvent(evt:Event):Boolean {
    // code here
}

And while a thorough google search will repeat this syntax successfully used in Class files, doing so inside timeline code, natively in the Flash IDE is proving impossible. The first issue being that the use of public throws the error 1114: The public attribute can only be used inside a package.

That was obvious, however upon removing that, running the following (on the first frame of a new .fla file):

override function dispatchEvent(evt:Event):Boolean {
    trace(evt.type);
    return super.dispatchEvent(evt);
}

results in this error: 1024: Overriding a function that is not marked for override.

Documentation on this error implies that I failed to prefix the identically named function with the override statement, but obviously that's a fallacy, and I'm left flabbergasted as to what the solution may be.

To be clear, we know a class file will work, but that's an irrelavant issue. How do we get override function dispatchEvent() working in timeline code?

link|improve this question
You probably can't do it from timeline code. You would probably have to switch from timeline code to having a "Document class" that would extend MovieClip, which in turn extends EventDispatcher, so there is a dispatchEvent function to override. – Lars Blåsjö Sep 1 '11 at 19:09
feedback

2 Answers

up vote 1 down vote accepted

You can only override class methods of the class you extend(the base class).
This follows the rules on inheritance.
When you extend a class you inherit all of its methods. Overriding a method allows you to restructure that method. Accessing a method and overriding it are 2 different things.

public class SomethingSomething extends Event{
  public function SomethingSomething ( ):void{
  }
  override public function dispatchEvent(evt:Event):Boolean {
    trace(evt.type);
    return super.dispatchEvent(evt);
  }

}
link|improve this answer
Wow... I just assumed the FLA document was a MainTimeline class, which I also assumed it inherited from MovieClip. Is the document class a blank canvas then? If true, this would certainly explain this issue. – Atriace Sep 1 '11 at 19:33
Of course its true. However you can create a Main class and use that for your document class and have that extend what you need. what it all comes down to is you need to create a class to override a function of another class. – The_asMan Sep 1 '11 at 19:36
feedback

dispatchEvent() is public, and your code is defualting to the default namespace. You neeed to do override function dispatchEvent(evt:Event):Boolean

link|improve this answer
Epsdz: I'm assuming your reply was accidentally cut short, but the namespace should be the same, as I understand it. As Senocular points out, "Anything defined as public can be accessed anywhere by anything." Regardless, to be sure, trying use namespace public; at the head of the document does not resolve the issue, as one might assume. – Atriace Sep 1 '11 at 19:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.