Hi,
I have a lot of pdf’s. I want to batch the page layout and magnification (Fit Page, Two-up (Coverpage))
Does anyone know if it is possible to do this by applescript?
thanks
Hi,
I have a lot of pdf’s. I want to batch the page layout and magnification (Fit Page, Two-up (Coverpage))
Does anyone know if it is possible to do this by applescript?
thanks
I checked already a few things. Acrobat isn’t that easy for scripting…
This is what i got at this moment:
tell application "System Events"
tell process "Acrobat"
activate
tell menu bar 1
tell menu bar item "File"
tell menu "File"
click menu item "Properties..."
tell window "Properties." of process "Acrobat"
end tell
end tell
end tell
end tell
end tell
end tell
I can call the window Properties, but how do I change the settings?
tell application "System Events"
tell process "AdobeAcrobat"
tell menu bar 1
tell menu bar item "File"
tell menu "File"
tell menu item "Properties..."
click
end tell
end tell
end tell
end tell
tell item 1 of every tab group of window "Document Properties"
click radio button "Initial View"
tell group "Layout and Magnification"
tell pop up button 2
click
tell menu 1
click menu item "Two-Up (Cover Page)"
end tell
end tell
end tell
end tell
click button "OK" of window "Document Properties"
end tell
end tell
Thx
tqm