Skip to content

Instantly share code, notes, and snippets.

@mipmip
Created July 11, 2013 12:39
Show Gist options
  • Save mipmip/5975093 to your computer and use it in GitHub Desktop.
Save mipmip/5975093 to your computer and use it in GitHub Desktop.
indesign pdf presets
require 'rubygems'
require 'appscript'
include Appscript
idApp = app('Adobe InDesign CS4')
myDoc= idApp.make(:new => :document)
p idApp.PDF_export_presets.get
idApp.PDF_export_presets.get.each do |item |
p item.name.get
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment