Title: Play Sound problem solved
I seem to have found a solution to my Play Sound problem. Rather than use a System 7 style sound, I simply switched to an AIFF file. Don’t know why that made a difference, but everything works great now, which is all I care to know. If this is of any use to others, my script follows below.

Cheers,

Justin

=================================================

-- Personal Message Notification by Justin Mayer
-- Requires Play Sound application: <http://microcosmsoftware.com/playsound/>
-- Create "Custom Sounds" folder in your Microsoft User Data folder
-- Add a sound file in AIFF format and name it "Personal.aiff"
-- Put this script in the Entourage Script Menu Items folder
-- Create a rule that runs this script when a message meets your criteria
-- (Example, when a To: recipient contains your name)
-- Duplicate and change the sound in this script to add other notifications

set cusrPath to (path to "cusr" as string)
set
soundAlias to (cusrPath & "Documents:Microsoft User Data:Custom Sounds:Personal.aiff") as alias

tell application "Play Sound"
   play (soundAlias as alias)
end
tell

Reply via email to