package skins.AV { import mx.skins.ProgrammaticSkin; public class ThumbSkin extends ProgrammaticSkin { override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void { graphics.clear(); var themeColor: uint = getStyle('fillColors')[0]; var thHeight: Number = 7; graphics.lineStyle(1, getStyle('borderColor'), 1); drawRoundRect(0, (unscaledHeight-thHeight)/2, unscaledWidth, thHeight, thHeight/2, 0xFFFFFF, 1 ); with (graphics) { lineStyle(2, themeColor, 0.65); moveTo(3, unscaledHeight/2); lineTo(unscaledWidth-3, unscaledHeight/2); } } } }