I have a vertical scroll-only TileList.  Is there anyway to:
1) remove the scrollbar, and
2) Use buttons at the top and bottom of the TileList that scroll the 
list while mouse over?

As a test, so far, I have a skinny and short TileList with a bunch of 
items in it.  When you mouseover a button it runs a function with the 
following code:

while (tileListing.verticalScrollPosition < 5) {
        tileListing.verticalScrollPosition = 
tileListing.verticalScrollPosition + 1;
}

Unfortunately, this obviously has the following problems:
a) The code runs so fast that the list "jumps."  Is there any way to 
make the movement slow?
b) How can I get the maximum length of the tileListing's dataProvider 
(i.e. to replace the "5" in the above example).
c) In the end, I'd like the scroll to stop based on both the 
mouseOver and the tileList's dataProvider length.  Is there a 
button.mouseOver == true type of condition?

Thanks!
 - Chris





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to