houseonfire Posted October 16, 2007 Posted October 16, 2007 Anyone know if this is possible? Its a fairly large page so it needs a progress bar. Thanks
Glyph Posted October 16, 2007 Posted October 16, 2007 Yeah it's possible, try somehting like this? but use the page size and have it increment by a % as it loads (hope that helps ><) ProgressOn("Progress Meter", "Increments every second", "0 percent") For $i = 10 to 100 step 10 sleep(1000) ProgressSet( $i, $i & " percent") Next ProgressSet(100 , "Done", "Complete") sleep(500) ProgressOff() tolle indicium
PsaltyDS Posted October 16, 2007 Posted October 16, 2007 Yeah it's possible, try somehting like this?but use the page size and have it increment by a % as it loads(hope that helps ><)It's a good idea, but where do you get the page size? That's the problem. Until you load the page, it's just a little bit of HTML text with links to .gif and .jpg files, scripts that do who-knows-what, maybe Flash animations and movie files, some music files... etc.The problems is: % of what? Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now