I am trying to rotate objects in a PDF file.
I open the file before running the script.
If I manually Select All before running my AppleScript, everything gets rotated:
(* =========================================== *)
tell application "Adobe Illustrator"
rotate selection angle -45 about center
end tell
(* =========================================== *)
How can I put the Select All into the script?