When I used Outlook the file names of all attachments were
automatically displayed in replys. There does not seem to be an option
to do this in Entourage (or am I being stupid).
Adam.
The script below will put a tag line n the message body relating to
attachments to the message. Is this what you wanted?
Save the script as a compiled script & put it in the ŒEntourage Script Menu
Items¹ folder in your ŒMicrosoft User Data¹ folder. The script can be
manually run from the menu.
This URL should load the script into Script Editor:
http://tinyurl.com/44pko
If it doesn¹t, copy it from here:
-- Name Attachments 21 Sep 2002
-- A script for Microsoft Entourage by Barry Wainwright
-- <mailto:barry@barryw,net>
tell application "Microsoft Entourage"
if class of window 1 is draft news window or class of window 1 is draft
window then
tell window 1
try
set thenames to name of every attachment
on error
return -99 -- silent exit
end try
if (count thenames) > 1 then
set messageText to return & "Files attached: "
repeat with aName in thenames
set messageText to messageText & return & tab & "<" &
aName & ">"
end repeat
set messageText to messageText & return & return
else if (count thenames) = 1 then
set messageText to return & "File attached: " & "<" &
thenames & ">" & return & return
end if
set selection to messageText
end tell
else
display dialog "This script will only work when a draft message
window is open" with icon stop buttons {"Exit Script"} default button 1
end if
end tell