I'm setting selected element in s:List component with Actionscript, it works, but List doesn't scroll to selected item -- need to scroll with scrollbar or mouse. Is it possible to auto-scroll to selected item ? Thanks !
|
Try the |
|||||
|
|
In flex-3 there is a
I believe this should work in flex-4 too. |
|||
|
|
|||
|
|
I saw this basic idea here... http://arthurnn.com/blog/2011/01/12/coverflow-layout-for-flex-4/
|
|||
|
|
|
This function will scroll to the top of the list in Flex 4+. It takes in account the height of the item, so it will work for lists with different items with different height.
|
|||
|
|
|
You'll probably want to access the List's scroller directly and do something like:
|
||||
|
I recently accomplished this in one of my projects by having a defined size for my items in the group..
Following this my button controls for manipulation worked by incrementing a private "targetindex" variable, then I called a checkAnimation function, which used the Animate class, in combo with a SimpleMotionPath and a comparison between tutpane.firstIndexInView and target index. This modified the "horizontalScrollPosition" of the group. This allowed separate controls to essentially act as a scroll bar, but I had the requirement of sliding the control to view the selected item.. I believe this technique could work for automated selection of items as well |
||||
|
|
|
You can multiply the height of an element by its index and pass this value to:
|
||||
|
|