Re: Emailer Lite Attachment Droplet...
Re: Emailer Lite Attachment Droplet...
- Subject: Re: Emailer Lite Attachment Droplet...
- From: "Bob.Kalbaugh" <email@hidden>
- Date: Sat, 27 Oct 2001 00:37:59 -0500
on 10/26/01 11:57 PM, Peter Bunn at email@hidden wrote:
Peter,
These are only suggestions as I do not have emailer...
>
-- And here is the script so far...
>
>
on open
>
tell application "Finder"
>
here:
>
set the_selection to every item of selection as list
set the_selection to every item of selection as alias list
--> list of file paths as alias
>
>
tell application "Mail"
>
activate
>
here:
>
create mail files {" & the_selection & "} encoding 3 without compress
create mail files the_selection encoding 3 without compress
-- the_selection is already a list
>
>
--create mail files {the_selection} encoding 3 without compress
>
>
end tell
>
end tell
>
end open
Might be worth a try?
_bob.kalbaugh