Tagged Questions
3
votes
1answer
815 views
Applescript create event in calendar, how do I remove the default alert?
Running 10.8 Mountain Lion, I'm trying to create a new event with Applescript like this:
set theDate to (current date)
tell application "Calendar"
tell calendar "Calendar"
set timeString ...
3
votes
1answer
254 views
iCal AppleScript, how to specify 'the same day at 9'?
I know that I can define a new iCal event programmatically, by means of AppleScript, defining something like:
tell application "iCal"
tell calendar "My Calendar"
set theCurrentDate to ...
1
vote
1answer
590 views
Need an everyday reminder at a specific time of the day on Mac OS X?
Does anyone know how I can create an everyday reminder that pops up every day at a specific time to remind me of doing something? I need to make it remind me everyday at 1:00pm to update my daily ...
2
votes
1answer
606 views
Is there a way to use AppleScript to create an iCal alarm that runs AppleScript like you can manually?
All I see in iCal's dictionary are display, mail, sound, and open file alarms.
Note: I know I can save the desired script as an app and create an open file alarm, but that would mean that the alarm ...
5
votes
2answers
992 views
How do I make Mail.app quit after iCal sends an alert?
iCal uses a built in script file to email reminders through Mail.app. It works great, but I don't use Mail.app for my main email account, just for sending calendar notifications.
So, Mail.app opens ...