Hello
I have to set some info fields of a PDF document via AppleScript. The proble is, that I’m not able to use German “Umlaute” (äöü).
tell application "Adobe Acrobat Professional"
activate
set theTitle to "äöü" as text -- as unicode text / as international text
set info of document 1 key "Title" value theTitle
end tell
This example results in the string “−ıŔ inside the documents info window.
Who has some suggestions on how to fix this encoding (?) problem
Thanks in advance
Alex