Hello All,
in order to save e-mails with subjects containing German Umlauts
I've created the following script:
<pre type="snippet">
tell application "Mail"
…
set msgsubject to (subject of item i of sels)
set msgfilename to msgdate & " -- " & msgsubject
…
tell application "System Events" to tell process "Mail"
keystroke "s" using {command down, ****ft down}
tell window 1
try
select text field 1 of sheet 1
end try
keystroke msgfilename
…
</pre>
The command "keystroke msgfilename" inserts the subject
appropriately, but unfortunately not in unicode, rather a "ö"
appears as "ˆ". What can I apply to the script to get that working
correctly?
Thanks for your help,
Arne