0
Rotating all objects in file using AppleScript
New Here
,
/t5/illustrator-discussions/rotating-all-objects-in-file-using-applescript/td-p/1161681
Dec 02, 2008
Dec 02, 2008
Copy link to clipboard
Copied
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?
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?
TOPICS
Scripting
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Explore related tutorials & articles
Community Expert
,
/t5/illustrator-discussions/rotating-all-objects-in-file-using-applescript/m-p/1161682#M238257
Dec 02, 2008
Dec 02, 2008
Copy link to clipboard
Copied
Try
set selection to every page item of document 1
set selection to every page item of document 1
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
_Fitterman_
AUTHOR
New Here
,
LATEST
/t5/illustrator-discussions/rotating-all-objects-in-file-using-applescript/m-p/1161683#M238258
Dec 02, 2008
Dec 02, 2008
Copy link to clipboard
Copied
Thanks, that works.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

