Saturday, January 14, 2012
This entry continue from Run InDesign extendscript from Applescript.
It is possible to run AppleScript in MacOSX's Java, so that we can also run InDesign extendscript from Groovy.
Saturday, January 14, 2012
It makes me irritate FONT MISSING DIALOG from InDesign when I run my jsx. I know I do not have these fonts. Just I want to run my jsx script.
Saturday, January 14, 2012
Export first page in an InDesign Active Document as PDF.
Saturday, January 14, 2012
List up all indd files in current dir with Groovy.
new File('.').eachDirRecurse {
def ff = { it.isFile() && it.name.endsWith('.indd') } as FileFilter
it.listFiles(ff).each{
println it
}
}