Last active
July 27, 2016 16:46
-
-
Save thomasrstegelmann/d7bd0e2b2776efb1910d to your computer and use it in GitHub Desktop.
An AppleScript that sends a random iMessage of love to your partner: You need to adjust the e-mail address to your special one and store this on your desktop for this special moment when you want to share some love, but just don't have the time.
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
set messages to {"Love you! π", "You are the best!", "Kiss ππ", "π", "πππ", "π"} | |
set message to some item of messages | |
tell application "Messages" | |
send message to buddy "[email protected]" of (service 1 whose service type is iMessage) | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment