InDesign MY-NOTEBOOK

Saturday, January 14, 2012

jsx-howto Run InDesign extendscript from Groovy

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

jsx-howto Set interaction level as never interact

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

jsx-howto Export first page as PDF

Export first page in an InDesign Active Document as PDF.

続きを読む

Saturday, January 14, 2012

jsx-howto Get all indd files in current directory and its sub directories

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
    }   
}

続きを読む

« NEWER POSTS | OLDER POSTS »

© 2011,2012 Tomoaki Oshima