<< ClearTextFXPath | CloseDocument >> |
Top: Documentation Library | Up: C Commands |
CloseBusyRequester Dialog Box Command
Closes a script's progress meter box.
closebusyrequester <handle>
handle/i The handle of the dialog box to close.
Examples:
ARexx:
openbusyrequester message 'Thinking...' thermometer ยจ enabled total 100 current 0
bh=RESULT
do for i = 1 to 100
/* script does something here */
/* abort if stop is pressed, else set meter */
getbusyrequester bh
if result=1 then break
else setbusyrequester bh current i
end i
closebusyrequester bh
bh=RESULT
do for i = 1 to 100
/* script does something here */
/* abort if stop is pressed, else set meter */
getbusyrequester bh
if result=1 then break
else setbusyrequester bh current i
end i
closebusyrequester bh
CloseBusyRequester Command Definition url:PGScmd/closebusyrequester
created:2006-03-30 10:07:12 last updated:2006-08-18 11:15:25
Copyright © 1985-2024 GrasshopperLLC. All Rights Reserved.
User Contributed Comments For CloseBusyRequester | sign in to add a comment |
Dan Kilroy wrote... | 2006-05-04 16:44:46 |
Script command submitted from PageStream internal documentation. Needs to be checked and merged with the command documentation above. Gets the {...} . CloseBusyRequester (brhandle) Parameters:
ARexx: Applescript: | |
User Contributed Comments For CloseBusyRequester | sign in to add a comment |
<< ClearTextFXPath | CloseDocument >> |
Top: Documentation Library | Up: C Commands |