Sphere777, on Feb 12 2010, 10:28 PM, said:
You find a resolution for this? I'm having the exact same issue.
I've gotten to a point where it works, but it doesnt work as i would like so i abandoned it. What i did, was use this following Applescript:
on run {input, parameters}
set selectedText to item 1 of input
tell application "Safari"
tell document 1
set pageURL to URL
end tell
tell window 1
tell current tab
set pageTitle to name
end tell
end tell
end tell
tell application "Mail"
activate
make new outgoing message with properties {visible:true, subject:"Αποστολή Άρθρου: " & pageTitle, content:"" & return & pageTitle & return & return & return & return & selectedText & return & return & return & return & return & return & pageURL}
end tell
end run
what it does, is:
it takes your selection from Safari
it takes the page's title and url
it create a new Mail message using the title as the msg's topic
it adds in the message body your selection, along with the page's url
While it works, the problem is that it doesnt add any images or formatting from the webpage, so it's only good to copy plain text. I guess there must be a way to fix this, but i got kinda tired with it to be honest.
If you find anything, please tell me