Ad Pijnenburg created FLEX-34633:
------------------------------------
Summary: HSlider track (Android4 skin) not being filled if thumb
position set programmatically
Key: FLEX-34633
URL: https://issues.apache.org/jira/browse/FLEX-34633
Project: Apache Flex
Issue Type: Bug
Components: Mobile: HSlider
Affects Versions: Apache Flex 4.14.0
Environment: Windows 7 / Flash Builder 4.7
Reporter: Ad Pijnenburg
Priority: Minor
The Android4 HSliderSkin causes the slider track not being filled up to the
thumb's position if the slider's thumb is positioned programmatically, i.e.
positioned not by user interaction but by setting the value property of the
HSlider's instance in code.
Quick fix by adding the following code lines to the set hostComponent function
in HSliderSkin.as:
if (_hostComponent) _hostComponent.removeEventListener(FlexEvent.VALUE_COMMIT,
thumbPositionChanged_handler);
if (_hostComponent) _hostComponent.addEventListener(FlexEvent.VALUE_COMMIT,
thumbPositionChanged_handler);
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)