> Message: 10 > Date: Thu, 06 Dec 2001 19:07:50 -0800 > From: John Cuccio <[EMAIL PROTECTED]> > Subject: Progress bar > To: rev discussion <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > > any idea how to do a progress bar in rev. > > --__--__-- > > Message: 11 > Date: Thu, 06 Dec 2001 22:20:37 -0500 > Subject: Re: Progress bar > From: Troy Rollins <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > > John Cuccio wrote: > > > any idea how to do a progress bar in rev. > > Basically you set the endValue of the scrollbar to your maximum (whatever > would equal 100%). Then increment the thumbPosition based on your events. > -- > Troy > RPSystems > www.rpsystems.net
Hi John, Just picked on the Metacard list... > You can try something like this : > > > on mouseUp > > if the shiftkey is down then edit script of me > > else > > set cursor to watch > > put 100 into oldcolls > > put "0" into stfwd > > put (102 / oldcolls) * 2 into gofwd > > repeat with ltr = 1 to oldcolls > > wait 10 # to replace by what ever you need > > put ltr & "/" & oldcolls into fld "ETrait" # the counter fld > > add gofwd to stfwd > > get the left of fld "progress" # the progressbar fld > > set the width of fld "progress" to stfwd > > set the left of fld "progress" to it > > end repeat > > end if > > end mouseUp > > Regards, Pierre Sahores > > WEB & VPN applications & databases servers > Inspection acad�mique de Seine-Saint-Denis > Qualifier & produire l'avantage comp�titif Cheers, Pierre _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
