by default the flash slider component can be manipulated with the keyboard. Is there a way to disable this behavior so that users can only drag the slider component with their mouse?
|
feedback
|
|
Simple, just set the 'focusEnabled' public property of the 'Slider' object to false:
This will indicate that the 'Slider' object can't recieve focus after the user clicks on it and therefore not allow the keyboard to interact with it. | |||
|
feedback
|
|
As @Taurayi and @Grant mentioned, changing focus would be the simples. Here's a dirtier way of doing somewhat the same:
Although Here's an even dirtier way:
And if you want a lengthy, but less dirty way, simply subclass fl.controls.Slider and set that as the class for the Slider symbol in your library. In your subclass you would add:
keyDownHandler is inherited from fl.core.UIComponent and in Slider.as it handles the keyboard updates. HTH | |||
|
feedback
|
|
Add:
To the SliderEvent.CHANGE handler This will shift focus to the stage, and therefore disable keyboard activity on the slider. | |||
|
feedback
|