Applescript "System Events"

Hi,

I want to change some setting in the properties of acrobat Pro. I am understanding that acrobat and scripting doesn’t work well. So I am trying to use System Events to do it.

I just want to change the magnification and page layout of every pdf.

I started on the script but i am stuck, who can help me?


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