The 'Count' value in your parent measure determines how many indexes are changed on PageUp/PageDown bangs; set it to '10' or '8'.I have indexed items laid out like this:I know there's a PageUp/Down function, but I would really like to know if it's possible to set the scroll amount by a certain number. In this example I would like to scroll by a value of 10. Although I'm looking at reducing this to a value of 8, with 8 items per line instead of 10.
- 1 - 10
11 - 20
21 - 30
31 - 40
41 - 50
I'm thinking it doesn't allow for this though!
MouseScrollUpAction=!CommandMeasure "ParentMeasureName" "IndexUp" This will decrease the index number by 1 each time.
MouseScrollDownAction=!CommandMeasure "ParentMeasureName" "IndexDown" This will increase the index number by 1 each time.
To scroll a row of indexes would require knowing how many indexes are in each row (this depends on how you setup the display) and testing that value to then perform individual !CommandMeasure "ParentMeasureName" "IndexUp" to display the next row.
Feel free to take a look at my Folderview skin code for examples of how to scroll rows rather than change pages.
Statistics: Posted by eclectic-tech — Today, 5:11 pm