why my ProgressBar can't capture the mouse down event?
- by donarlee
I use a custom skin as the track skin, but i can't get the mouse down event
protected function application1_creationCompleteHandler(event:FlexEvent):void
{
pBar.addEventListener(MouseEvent.MOUSE_DOWN, onEvent, true);
}
protected function onEvent(event:MouseEvent):void
{
trace("mouse down");
}
]]>
</fx:Script>
<s:layout>
<s:VerticalLayout horizontalAlign="center" verticalAlign="middle" />
</s:layout>
<mx:ProgressBar id="pBar" width="518" height="15"
labelPlacement="center" trackSkin="skins.CustomTrackSkin"
mode="manual" label="" minimum="0" maximum="100"/>