Hi Chris,

I am currently trying to extend the AutoComplete component that Adobe
released recently.  AutoComplete extends ComboBox and it overrides a
few methods such as keyDownHandler and UpdateDisplayList.  In my
subclass of AutoComplete I want to access the originally defined
keyDownHandler and updateDisplayList in ComboBox, essentially
bypassing the methods overridden in AutoComplete.  

I tried super.super.someMethod and it is not possible.  The bulk of
AutoComplete, I want to use, but those two methods are displaying
undesirable results which need to be changed.

Thanks,
j

--- In [email protected], Chris Velevitch
<[EMAIL PROTECTED]> wrote:
>
> If you are in a method of say class C which extends class B, then
> calling super.someMethodName works. If class B extends class A and B
> doesn't redefine a method of A, say, called methodOfA, then in class C
> you can call super.methodOfA. This is because, through inheritance,
> all unredefined methods of A are automatically available to B. Super
> only works one level up.
>


Reply via email to