Creates a customizable progress bar window.
ProgressOn ( "title", "maintext" [, "subtext" [, x pos [, y pos [, opt]]]] )
Parameters
title | Title for progress window. |
maintext | Text for Main, Bold, Upper label. |
subtext | [optional] text for Sub, Normal, Lower label. (default is blank) |
x pos | [optional] position from left (in pixels) of progress window. (default is centered) |
y pos | [optional] position from top (in pixels) of progress window. (default is centered) |
opt | [optional] Default is 'always on top/with title' Add up the following options you want: 1 = borderless, titleless window 2 = Without "always on top" attribute 16 = Window can be moved |
Return Value
None.
Remarks
To skip an optional parameter, leaving it's default value intact, use:
Related
ProgressOff, ProgressSet
Example
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()