Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Acrobat X Reader enable on Lion

Featured Replies

Loaded Acrobat Pro X onto my Lion machine to discover that there is a big change to the menu structure

So if anyone is interested here is some Applescript to Reader Enable a form/ file

Requires the file to be open first.

Feel free to improve




on replace_chars(this_text, search_string, replacement_string)

set AppleScript's text item delimiters to the search_string

set the item_list to every text item of this_text

set AppleScript's text item delimiters to the replacement_string

set this_text to the item_list as string

set AppleScript's text item delimiters to ""

return this_text

end replace_chars



-- make this whatever path you want

set target to path to documents folder

--set target to (target as string) & "myFolder:mySubfolder:"

tell application "Adobe Acrobat Pro"

set docName to name of front document

-- change this how you see fit

set fileName to my replace_chars(docName, ".pdf", "_enabled.pdf")

set eName to (target as string) & fileName

end tell



try

tell application "Finder"

  if exists file eName then

   delete file eName

  end if

end tell



tell application "System Events"

  tell process "Acrobat"

   set frontmost to true

   click menu item "Enable Additional Features..." of menu 1 of menu item "Reader Extended PDF" of menu 1 of menu item "Save As" of menu 1 of menu bar item "File" of menu bar 1

   delay 0.2

   keystroke return

   set saveDialogActive to true

   --put fileName into dialog box

   set value of text field 1 of window "Save" to fileName

   click button "Save" of window "Save"

  end tell

end tell



tell application "System Events"

  tell process "Acrobat"

   click menu item "Close" of menu 1 of menu bar item "File" of menu bar 1

  end tell

end tell

set result to true

on error

set result to false

end try

result



  • 1 year later...
  • Author

and Acrobat XI has changed the menu structure agin so after some trial and error you will need this line instead:

--Acrobat Pro XI
click menu item "Enable More Tools (includes form fill-in & save)..." of menu 1 of menu item "Reader Extended PDF" of menu 1 of menu item "Save As Other..." of menu 1 of menu bar item "File" of menu bar 1

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.