2011-01-07 67 views
1

我有從我的類ContentMC(繼承自MovieClip)繼承的類ShowCase。 在ShowCase類中,我有一個EventListner,它調用父類ContentMC中的函數。但我得到一個錯誤,說「訪問未定義的屬性restoreMenuItem」。父類中的EventListener函數

這是我在ShowCase.as中的eventlistner。

showcaseItem.addEventListener("CONTENTMCCLOSED", restoreMenuItem); 

在這裏我得到的錯誤,它沒有找到函數restoreMenuItem。

函數restoreMenuItem在ContenMC中,看起來像這樣。

public function restoreMenuItem(evt:Event):void 
     { 

} 

如何調用父函數?

感謝,文森特

回答

3

使用超級聲明。

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