Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binghe/Acrobat-Actions
Actions, Commands and Plug-ins for Adobe® Acrobat® Pro
https://github.com/binghe/Acrobat-Actions
acrobat acrobat-javascript acrobat-plugin adobe-acrobat adobe-acrobat-js adobe-acrobat-pro common-lisp lispworks pdf plugin
Last synced: 16 days ago
JSON representation
Actions, Commands and Plug-ins for Adobe® Acrobat® Pro
- Host: GitHub
- URL: https://github.com/binghe/Acrobat-Actions
- Owner: binghe
- License: mit
- Created: 2018-12-06T09:52:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T03:30:55.000Z (about 2 months ago)
- Last Synced: 2024-09-10T06:32:23.701Z (about 2 months ago)
- Topics: acrobat, acrobat-javascript, acrobat-plugin, adobe-acrobat, adobe-acrobat-js, adobe-acrobat-pro, common-lisp, lispworks, pdf, plugin
- Language: C
- Homepage:
- Size: 2.44 MB
- Stars: 62
- Watchers: 6
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
---
author: Chun Tian
---# Actions, Commands and Plug-ins for Adobe® Acrobat®
This repository offers some Actions, Custom Commands, Preflights, PDF Stamps, JavaScripts and Plug-ins (C/C++ and Common Lisp) for Adobe® Acrobat® - the de-facto standard viewer and editor for Adobe PDF (Portable Document Format) files.
## Compatibility with Acrobat® versions
Tested on Acrobat® Pro XI, DC (2015) and DC (2017), on Windows and Mac OS X.
Use files in "zh-cn" for Acrobat® Pro DC in Simplified Chinese; use files in "en" for Acrobat® Pro DC in English. For Acrobat® Pro in other UI languages, some keywords in the actions may have to be changed. Most of them also work in Acrobat® Pro XI.
The (Custom) Commands are new features since DC 2015, as single-step Actions. They're not supported in XI and prior versions.
## Usage
The main entry is Action Wizards (动作向导) in Acrobat Pro, where you can import Actions and Custom Commands.
To import a toolset into Acrobat DC (2015 only), simply open that file (`*.aaui`). In Acrobat 2017 one can import custom tool sets normally.
NOTE: Some Actions and Commands require special Preflight profiles (in this repository), which must be also imported.
## Folder Level JavaScript
JavaScript code can be directly put into Acrobat's "JavaScripts" folder when initializing Acrobat. Usually they creates new menu entries or toolbar buttons, and they are superior than custom actions as JS code can provide user-defined icons, see `Highlights.js` for my first such work.
## Acrobat® Plug-ins in C/C++
Some PDF tasks are impossible to implement in JavaScript, because Adobe didn't expose the related APIs to JavaScript level. In this case, the work can be done by writing plugins in C/C++. One such plug-in is provided in the `Plug-ins` folder (for manipulating PDF bookmarks).
## Acrobat® Plug-ins in Common Lisp
It's possible to develop Acrobat® Plug-ins in more advanced dynamic languages like Lisp. A new plugin tools is under [pdf-plugin-tools](pdf-plugin-tools). This tool is inspired by Edi Weitz's [FM-PLUGIN-TOOLS](https://github.com/binghe/fm-plugin-tools).