Re: How can I display the number of records processed using a thermometer
Re: How can I display the number of records processed using a thermometer
- Subject: Re: How can I display the number of records processed using a thermometer
- From: Rhostik <email@hidden>
- Date: Fri, 9 Jan 2004 12:37:48 +0000
On 6 Jan 2004, at 07:09, Martin Orpen wrote:
The simplest way would probably be to buy the 24U Appearance osax
($36.00)
Send me $35.00 and you can use my progress bar:
set funProg to ""
repeat until length of funProg is 60
set funProg to funProg & "I"
display dialog funProg giving up after 1
end repeat
Not suitable for people suffering from epilepsy.
... but this is. Combining 2 previous posts. (Best if TextEdit is
already active!!)
set progMeter to ""
tell application "TextEdit"
activate
make new document at front
set bounds of front window to {300, 250, 500, 285}
tell front document
repeat until length of progMeter is 60
set progMeter to progMeter & "I"
set it's last paragraph to progMeter
delay 0.02
end repeat
close saving no
end tell
end tell
-Ian
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.