-
-
Save schfkt/96673181b6066d7e894e to your computer and use it in GitHub Desktop.
AppleScript to set Away status in Skype and Adium (for Alfred)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on alfred_script(q) | |
tell application "Adium" to go away | |
tell application "Skype" | |
send command "SET USERSTATUS AWAY" script name "Alfred" | |
end tell | |
end alfred_script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on alfred_script(q) | |
tell application "Adium" to go offline | |
tell application "Skype" | |
send command "SET USERSTATUS OFFLINE" script name "Alfred" | |
end tell | |
end alfred_script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on alfred_script(q) | |
tell application "Adium" to go available | |
tell application "Skype" | |
send command "SET USERSTATUS ONLINE" script name "Alfred" | |
end tell | |
end alfred_script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment