Re: Scripting MegaPhone {was Re: not finding "help" helpful}
Re: Scripting MegaPhone {was Re: not finding "help" helpful}
- Subject: Re: Scripting MegaPhone {was Re: not finding "help" helpful}
- From: "S. Slivan" <email@hidden>
- Date: Sun, 11 Nov 2001 14:39:48 -0500
Okay, this is what I came up with:
When a caller leaves a voice mail, the folder that holds the messages
gets changed.
so, I attached the following script to that folder. It works! It rings
my cell
once to tell me that a message has been left. It's neat. too bad my
modem or cell #
don't support caller ID, but then I'd be pulling out more of my hair.
Is it correct that
I make sure that the voice mailbox folder is open in order for the
attached script to run?
email@hidden
--begin script
on adding folder items to ThisFolder after receiving TheFiles
tell application "Finder"
activate
delay 90
tell application "MegaPhone 2.1"
activate
call "5551212"
end tell
delay 12
tell application "MegaPhone 2.1"
hang up
end tell
end tell
end adding folder items to
--end script