I would like my application to show every disabled UIComponent
on stage with a certain amount of alpha on it.
I believe the default value is .5 and this makes some of the fields quite unreadable. Reducing it to .3 should fix my problem.
For
Spark
components, I know I can create a custom skin and edit thealpha.disabled
. But I don't want to do this for 30+ components just for the sake of an alpha style propertySetting
disabledOverlayAlpha
will only work on containers, and I need something that actually will work on components at the lowest level of the dislay hierarchy. If I'm not mistaken this is only available formx
components.
What would be the pragmatic way to go in order to make all UIComponents
show the same amount of alpha on disabling them?
Cheers
Not the prettiest solution, but it's the only thing I could come up with that does what you ask for any UIComponent:
target
(which is the component that was just added). "enabledChanged" is dispatched by UIComponent when itsenabled
property changes.alpha
of the component that fires this event.Yuck! I hope I'm overlooking a simpler option. Otherwise I'd probably just go for creating all the Spark skins, perhaps with an additional style for the disabled alpha value so that you can set it globally in the future.