> I have writen a class that extends the "VSlider"
>
> VSliders have the property of "thumbCount", which is how many little
> arrows appear on the slider.
>
> I want to prevent people from setting there own.
>
> I thought I could hide it from them by overriding the "thumbCount"
> property with a private one, but get an error "Overriding function
> that is not masked for override".
A public property cannot be hidden in a subclass. You could either
throw an exception in the setter or just do nothing (don't set
super.thumbCount).
Manish
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
| Web site design development | Computer software development | Software design and development |
| Macromedia flex | Software development best practice |
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

