--AppleScript y vocales con tilde.
--Diferentes códigos unicode de texto, pero mismo carácter como resultado. :-(
set n to id of "á" --225
set n2 to id of "a" --97
tell application "System Events"
keystroke string id 225 -- a (sin acento agudo)
keystroke string id 97 -- a
keystroke "a" -- a
keystroke "á" -- a (sin acento agudo)
end tell
--Agradecería cualquier ayuda para saber cómo conseguir hacer referencia a las vocales acentuadas.