InDesign Automation with Python(11): find and change textgithub : 11_find_and_change_text from appscript import * indd = app("Adobe InDesign 2022") doc = indd.activ… 6/15/2022· Updated :6/21/2022
InDesignドキュメントを1ページずつpdf化(ファイル名を4桁のノンブルに)const saveto = "/Users/*****/Desktop/******/";//保存先 var doc = app.activeDocument; var p = doc.pages; var L = p… 6/12/2022· Updated :6/15/2022
あるフォルダー内全てのInDesignファイル(再帰的に)をIDMLとして保存ある日、ある会社からInDesign2022のデータが大量にきました。画像抽出の作業なので、IDMLに変換して、作業者(古いInDesignしか持っていない)に渡す。InDesignからIDMLファイルへの変換コード自体はシンプルだが、目標フォ… 6/03/2022
InDesignのtextFrames、pageItems、allPageItemsの話InDesign自動化スクリプトを書く日々、下記の3つはよく使う。 textFrames、pageItems、allPageItems その差異については、検証してみる。下記のようなドキュメントあって、全てテキストフレームで、 430 は 40… 4/07/2022
InDesign Automation with Python(10): pdfgithub: 10_pdf.py from appscript import * indd = app("Adobe InDesign 2022") doc = indd.make(new=k.document) p… 4/04/2022· Updated :6/21/2022
InDesign Automation with Python(09): graphicgithub: 09_graphic.py from appscript import * indd = app("Adobe InDesign 2022") doc = indd.make(new=k.docum… 2/24/2022· Updated :6/21/2022
InDesign Automation with Python(08): table/cellgithub: 08_table.py from appscript import * def add_CYMK_color(doc, values: list, name: str): # add a CMYK color … 1/25/2022· Updated :6/21/2022
InDesign Automation with Python(07): fontgithub: 07_font.py from appscript import * indd = app("Adobe InDesign CC 2019") fonts = indd.fonts # all f… 1/19/2022· Updated :6/21/2022
InDesign Automation with Python(02): textFramegithub: 02_text_frame.py from appscript import * indd = app("Adobe InDesign CC 2019") doc = indd.make(new=k.d… 1/19/2022· Updated :6/21/2022
InDesign Automation with Python(06): paragraphgithub: 06_paragraph.py from appscript import * def add_CYMK_color(doc, values: list, name: str): # add a CMYK co… 1/12/2022· Updated :6/21/2022