/* Define the skin elements that should not be colorized. For checkbox, the graphics are colorized but the check mark is not. */ static private const exclusions:Array = ["check"]; /** * @private */ override public function get colorizeExclusions():Array {return exclusions;} /* Define the symbol fill items that should be colored by the "symbolColor" style. */ static private const symbols:Array = ["checkMarkFill"]; /** * @private */ override public function get symbolItems():Array {return symbols}; /* Define the border items.*/ static private const borderItem:Array = ["borderEntry1", "borderEntry2"]; /** * @private */ override protected function get borderItems():Array {return borderItem;} /** * @private */ override protected function initializationComplete():void { useChromeColor = true; super.initializationComplete(); }