iNeedAttention

iNeedAttention is an AppleScript that repeatedly logs a user in and out of iChat. When a user logs in, typically the chat client will play a sound to let the user know someone has logged in. When running iNeedAttention, users with you in their buddy list will repeatedly hear that sound. The intention being to get another AIM or Jabber user’s attention. Two ways this script can be used: 1) Logging in and out over the course of a few minutes to get the attention of a particular individual. 2) Setting iNeedAttention to run all night while you’re asleep to annoy people.
Download the iNeedAttention bundled App
Download the iNeedAttention bundled App from Download.com
Download the iNeedAttention bundled App from VersionTracker.com
Below is the AppleScript:
display dialog "How many times would you like to log in and out of iChat?" default answer "5"
set loginout to text returned of result as number
display dialog "How many seconds would you like between each log in and out of iChat?" default answer "20"
set timebetween to text returned of result as number
repeat loginout times
tell application "iChat" to log out
tell application "System Events" to delay 5
tell application "iChat" to log in
tell application "System Events" to delay timebetween
end repeat
