Mac OS 9.1 Technote Available
Mac OS 9.1 Technote Available
- Subject: Mac OS 9.1 Technote Available
- From: What does not kill you only makes you stronger <email@hidden>
- Date: Fri, 19 Jan 2001 17:14:59 -0600
<
http://developer.apple.com/technotes/tn/tn2010.html>
Just one example I personally don't recall ever seeing:
tell application "Finder"
if execution state is restarting then
beep 1 -- the machine is being restarted
else if execution state is starting up then
beep 2 -- starting up the machine
else if execution state is running then
beep 3 -- functioning perfectly
else if execution state is rebuilding desktop then
beep 4 -- currently rebuilding the desktop file
else if execution state is copying then
beep 5 -- performing a copy operation
else if execution state is quitting then
beep 6 -- powering down the machine
end if
end tell