Re: [Flashcoders] extend and implement

2006-11-09 Thread Ian Thomas
Yes. Pretty much exactly as you describe it. interface ITheInterface { blah } class ClassA extends MovieClip implements ITheInterface { blah } should work fine. Ian On 11/9/06, Haydn <[EMAIL PROTECTED]> wrote: Is it possible to for a class to extend another class as well as implement an in

[Flashcoders] extend and implement

2006-11-08 Thread Haydn
Is it possible to for a class to extend another class as well as implement an interface? What I want to do is something like this: ITheInterface { // etc. } ClassA implements ITheInterface extends MovieClip { // etc. } ClassB implements ITheInterface extends MovieClip {