[flexcoders] Re: super.super?

2007-01-22 Thread JWOpitz
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

RE: [flexcoders] Re: super.super?

2007-01-22 Thread Gordon Smith
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: super.super? 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

[flexcoders] Re: super.super?

2007-01-22 Thread JWOpitz
Hi Gordon, just curious to know if super.super.someMethod() is supported in AS3. Or was that a typo below? --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: super.super isn't supported in AS2. Can you describe your situation? Why do you need to inherit from a class

Re: [flexcoders] Re: super.super?

2007-01-22 Thread Michael Schmalle
Hi, The compiler is thinking that super is a method in the 'super' class. No, you cannot call super.super in AS3. You could in a super.super class define protected function $method():void { super.method(); trace(two levels up); } override protected function method():void { trace(two

RE: [flexcoders] Re: super.super?

2007-01-22 Thread Gordon Smith
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Monday, January 22, 2007 3:40 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: super.super? Hi, The compiler is thinking that super is a method in the 'super' class. No, you cannot call super.super in AS3

RE: [flexcoders] Re: super.super?

2007-01-22 Thread Gordon Smith
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JWOpitz Sent: Monday, January 22, 2007 9:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: super.super? Hi Gordon, just curious to know if super.super.someMethod() is supported in AS3. Or was that a typo below? --- In flexcoders

Re: [flexcoders] Re: super.super?

2007-01-22 Thread Michael Schmalle
Of *JWOpitz *Sent:* Monday, January 22, 2007 9:54 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Re: super.super? Hi Gordon, just curious to know if super.super.someMethod() is supported in AS3. Or was that a typo below? --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Gordon