父类中的EventListener函数

时间:2011-01-07 12:21:10

标签: flash actionscript-3 actionscript event-listener

我的类ShowCase继承自我的ContentMC类(继承自MovieClip)。 在ShowCase类中,我有一个EventListner,它调用父类ContentMC中的一个函数。但是我收到一条错误,上面写着“访问未定义的属性restoreMenuItem”。

这是我在ShowCase.as中的eventlistner。

showcaseItem.addEventListener("CONTENTMCCLOSED", restoreMenuItem); 

这里我收到错误,但没有找到函数restoreMenuItem。

函数restoreMenuItem在ContenMC中,看起来像这样。

public function restoreMenuItem(evt:Event):void
        {

}

如何调用父母的这个功能?

谢谢,文森特

1 个答案:

答案 0 :(得分:3)

使用超级语句。

showcaseItem.addEventListener("CONTENTMCCLOSED", super.restoreMenuItem);