set tilde to (path to home folder as string)
tell application "Pages"
open file (tilde & "desktop:read me.doc")
activate
tell application "System Events"
tell process "pages"
keystroke "S" using {command down}
delay 1
keystroke "read me" -- the name of the file
delay 1
--doesn't press return here. :mad:
delay 5
keystroke "W" using {command down}
end tell
end tell
end tell