[flagged]
Show HN: Schedule iMessage Texts from .txt Files
31–40 of 76 posts
Re: Show HN: Schedule iMessage Texts from .txt Files
#32The use of “computer” throughout got me excited. Requires a Mac, yes?
Yep, is AppleScript Still don’t know how they get around auto send, iMessage required user input last time I tried this [Edit] Shortcuts still require user interaction, apparently mac does not, that's interesting
Re: Show HN: Schedule iMessage Texts from .txt Files
#33Here's an Apple Script moving through iMessage to SMS if required. Make sure to add helpers to update the recipients contact to default to SMS, otherwise you're just cluttering your Messages history with failed messages. -------- tell application "Messages" set phoneNumber to "+15555555555" set messageToSend to "This is a test!" try set iMessageService to (1st account whose service type = iMessage) set iMessageBuddy…
Re: Show HN: Schedule iMessage Texts from .txt Files
#34[flagged]
Re: Show HN: Schedule iMessage Texts from .txt Files
#35The use of “computer” throughout got me excited. Requires a Mac, yes?
Re: Show HN: Schedule iMessage Texts from .txt Files
#36Re: Show HN: Schedule iMessage Texts from .txt Files
#37I’ve built something similar with ios shortcuts. One shortcut that uses prompts and data jar to schedule and store messages. It also creates a cal event as a reminder to myself. It supports group texts. Then I have three automations that run in the morning, noon, and afternoon that check for scheduled messages and send them. Works well. Happy to share if interest.
Re: Show HN: Schedule iMessage Texts from .txt Files
#38Earlier quoted context omitted.
Unfortunately no, Apple has usage limits on iMessage / SMS relaying. Many people hack around this, SendBlue.co being the only long running service, but it's full of the graveyard of folks trying to do this.
What does this mean in practice? I leave my Messages app on my laptop open all day and correspond entirely through it with family. Since I'm typing I send messages rapidly at volume. I've never once hit a limit. Think hundreds of responses a day. If an app running on my machine has subclassed the Messages app and is reading strings and sending hit strokes to the (Send) button on my behalf, how can Apple possibly rate…
Re: Show HN: Schedule iMessage Texts from .txt Files
#39I’ve built something similar with ios shortcuts. One shortcut that uses prompts and data jar to schedule and store messages. It also creates a cal event as a reminder to myself. It supports group texts. Then I have three automations that run in the morning, noon, and afternoon that check for scheduled messages and send them. Works well. Happy to share if interest.
what's the purpose for this?
Re: Show HN: Schedule iMessage Texts from .txt Files
#40[flagged]
If given the choice between writing AppleScript or Python I'm picking Python. Maybe Python can generate my AppleScript is really as close as I want to be to AppleScript.