根据 Steven Shongrunden 的优秀文章http://flexponential.com/2009/10/09/chang-the-position-of-the-scroll-bars-in-a-spark-list/ ,我已经修改了我的 VScrollBar 的滚动条皮肤所以只有向上和向下按钮,没有滚动条。
现在我想修改滚动条的行为,使其每次点击滚动一页。更好的是,我希望滚动动画带有缓动,即不是从一页跳到另一页,而是滚动动画。
ScrollBarBase http://www.flex-component.com/asdoc/kcdualslider/spark/components/supportClasses/ScrollBarBase.html的文档建议了一些应该提供实现此目的的方法的方法,但我找不到如何使用这些出色的方法和属性的任何示例:
animatePaging(newValue:Number, pageSize:Number):
Animates the operation to move to newValue.
button_buttonDownHandler(event:Event):
Handles a click on the increment or decrement button
button_buttonUpHandler(event:Event):
Handles releasing the increment or decrement button
decrementButton:Button
An optional skin part that defines a button that, when pressed, steps the scrollbar up.
incrementButton:Button
An optional skin part that defines a button that, when pressed, steps the scrollbar down.
我的预感是我需要中断 decrementButton 和 incrementButton 的 button_buttonUp/DownHandlers 并调用 animatePaging,但我真的不知道该怎么做。尽管编写了大量的 AS3 并成功修改了很多皮肤,但这些火花皮肤对我来说真的很神秘。
期待任何见解!
谢谢!