DTP駆け込み寺

[ 返信 ]

Re^5: InDesignのJavaスクリプトで検索置換

どうぞ。

app.findTextPreferences = NothingEnum.nothing;
app.changeTextPreferences = NothingEnum.nothing;

var keyword = "("; // 置換元の文字
var repWord = "("; // 置換後の文字
var pStyle = app.activeDocument.paragraphStyleGroups.itemByName("Body").paragraphStyles.itemByName("Paragraph");

app.findTextPreferences.appliedParagraphStyle = pStyle;

app.findTextPreferences.findWhat = keyword;
app.changeTextPreferences.changeTo = repWord;
app.activeDocument.changeText ();

[14583] Subi (2012/09/04 Tue 17:52)


残り1件

  1. [14578] InDesignのJavaスクリプトで検索置換について たいし 2012/09/04 14:11
    1. [14579] Re: InDesignのJavaスクリプトで検索置換 Subi 2012/09/04 14:50
      1. [14580] Re^2: InDesignのJavaスクリプトで検索置換 たいし 2012/09/04 15:49 *
        1. [14581] Re^3: InDesignのJavaスクリプトで検索置換 Subi 2012/09/04 16:25
          1. [14582] Re^4: InDesignのJavaスクリプトで検索置換 たいし 2012/09/04 17:38 *
            1. [14583] Re^5: InDesignのJavaスクリプトで検索置換 Subi 2012/09/04 17:52
              1. [14584] Re^6: InDesignのJavaスクリプトで検索置換 たいし 2012/09/04 18:02