Bill,

In your loop you need to set the thumbPosition of the scrollbar to a value
and it will move. Here's an example for a progress bar based on the total
number of cards:

set the endValue of scrollbar "Progress" to \
 (the number of cards of this stack)
-- First, start with the scrollbar empty
set the thumbPosition of scrollbar "Progress" to 0
repeat with x = 1 to the number of cards of this stack
  set the thumbPosition of scrollbar "Progress" to x
end repeat
-- Finally, reset the scrollbar to empty
set the thumbPosition of scrollbar "Progress" to 0

HTH,

Ken Ray
Sons of Thunder Software
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/


> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Bill
> Sent: Saturday, June 05, 2004 3:15 PM
> To: [EMAIL PROTECTED]
> Subject: How to use progress bar
> 
> 
> I do a lot of time consuming things with data and would love 
> to have a progress bar or something instead of just a 
> spinning beachball. I want it to use the number of cards in 
> the stack as finish and then increment every 2% of the total 
> cards or something like that. Since I couldn't even get the 
> progress bar to change at all no matter what I threw at it I 
> need some help!
> 
> Thanks in advance. 
> 
> _______________________________________________
> use-revolution mailing list
> [EMAIL PROTECTED] 
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 


_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to