RE: [flexcoders] Re: how do I prevent users from accessing my super extened class?

2006-05-03 Thread Peter Farland
Oh, in that case override then mark final: override public final function set thumbCount(number:Number):void { super.thumbCount = number;  } -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nz_mehere Sent: Wednesday, May 03, 2006 4

RE: [flexcoders] Re: how do I prevent users from accessing my super extened class?

2006-05-03 Thread Peter Farland
Correct. public final function set thumbCount(number:Number):void {     super.thumbCount = number;  } -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nz_mehere Sent: Wednesday, May 03, 2006 4:12 PM To: flexcoders@yahoogroups.com Subjec

Re: [flexcoders] Re: how do I prevent users from accessing my super extened class?

2006-05-03 Thread Manish Jethani
On 5/3/06, nz_mehere <[EMAIL PROTECTED]> wrote: > Is this what you meant? > > public function set thumbCount(number:Number):void{ > //ignore this... > } > > > ...cause it doesn't compile..."Overriding function that is not marked > for override" Yes: override public function ... Manis