Re: [Flashcoders] no method with name 'createClassObject'.

2006-02-13 Thread Steve Webster
its a method of uicomponent More specifically, createClassObject is a mix-in method that gets added to MovieClip when you have a UIComponent in your library. Peter: You should try calling... super.createClassObject( ...whataver... ); ...if you're extending a MovieClip. Cheers, Steve --

Re: [Flashcoders] no method with name 'createClassObject'.

2006-02-13 Thread Johannes Nel
its a method of uicomponent On 2/13/06, Peter Burke <[EMAIL PROTECTED]> wrote: > > Hello, > > I'm trying to create a button on-the-fly within a class declaration, but > am > running into this error: > > "There is no method with the name 'createClassObject'." > > -- > >

[Flashcoders] no method with name 'createClassObject'.

2006-02-13 Thread Peter Burke
Hello, I'm trying to create a button on-the-fly within a class declaration, but am running into this error: "There is no method with the name 'createClassObject'." -- Contents of Hint.as: import mx.controls.Button; class Hint extends MovieClip { var hintTextBox