I am creating a component as a Library (swc)
I have the following code in my .as file
[Bindable]
[Inspectable(defaultValue="Put Text Here", category="MySettings")]
public function get labelText():String
{
return _labelText;
}
The category is being set properly, but the default value does not show.
Is it me or a bug ?
Thanks
BOb
p.s. the category meta-data only works in its own way i.e. first is
always 'Common' and last is always 'Other'. any metadata tags are
inserted in between regardless of alphabetic sort order. I find this
annoying as I would like all of my settings either first or last so
they are easier to see.