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
InDesignファイル使用している全フォントを収集普段、カタログを個人以外の別マシンで作業したい場合が時々あります。その時、大体足りないフォントの探す・インストールから始まる。これは、非常に非効率です。下記のスクリプトで、一括コピペしてくれる。 if (app.documents.lengt… 12/20/2021
InDesign全ページをpsファイルとして保存ある日、お客さんから、**カタログの全ページを1ページ1ファイルのpsファイルに(ファイル名=4桁ノンブル)書き出す必要あると。こんなニーズ、困るな。ポイントは下記の1行だ。これがないと、保存できない。 app.printerPresets… 12/17/2021
xlrd結合セルの値を取得エクセルを処理する時、xlrdはよく使っている。ところが、通常の sheet.cell(0,0).value だと、結合したセルの値は空になる。実は、sheetクラスに、 merged_cells というものがあり、そこから実際の値を取れる… 12/14/2021· Updated :12/17/2021