/** * The host component of this skin. * * @langversion 3.0 * @playerversion Flash 10 * @playerversion AIR 1.5 * @productversion Flex 4 */ [HostComponent("Object")] /* Define the skin elements that should not be colorized. * For WindowedApplication, border and status bar background are colorized, * but the content area and status text are not. * Exclude the titleBar because it is a SparkSkin and we * don't want to colorize it twice. * * @langversion 3.0 * @playerversion Flash 10 * @playerversion AIR 1.5 * @productversion Flex 4 */ static private const exclusions:Array = ["backgroundRect", "contentGroup", "titleBar", "titleBarBackgroundRect", "statusText", "borderBgFill"]; /** * @private */ override public function get colorizeExclusions():Array {return exclusions;} /** * @private */ override protected function initializationComplete():void { useChromeColor = true; super.initializationComplete(); }