The best way to use this is to install the script menu then save this script in the scripts folder. You will then be able to change your status name for all your accounts sytem wide!
The script is as follows:-
Code: Select all
tell application "Adium"
set myName to "Sy"
set appendName to the text returned of (display dialog "Enter Text to Append to " & myName & ":" default answer "This is my witty Message")
set newDisplayName to myName & " - " & appendName
set noAcc to count of accounts
repeat with noAcc from 1 to noAcc
set display name of item noAcc in accounts to newDisplayName
end repeat
display dialog "Your display name has been changed to
" & newDisplayName
end tellI hope this all works for you as this is my first applescript!
Regards, Sy