簡體   English   中英

添加對話框 window 時 InDesign 腳本不起作用

[英]InDesign Script not working when dialog window is added

我正在嘗試創建一個基於 GREPs 的腳本,該腳本用兼容的字體替換非拉丁字符中的 fonts,但是當我將它添加到對話框 window 時,它不再起作用(它自己起作用)。 我已經確定了它停止運行的點,它位於這兩行之間:

var options = app.findChangeGrepOptions.properties;

app.findGrepPreferences = NothingEnum.NOTHING;

調試腳本時,我收到以下錯誤:運行時錯誤:錯誤代碼# 30486:無法處理請求,因為模式對話框或警報處於活動狀態。

那時應該沒有對話框或警報,當我自己運行腳本時不會發生這種情況。 有人可以幫我一下嗎? 我真的不明白為什么會這樣。 完整的腳本是這個:

var dialog = new Window("dialog"); 
    dialog.text = "Asian font replacement"; 
    dialog.orientation = "column"; 
    dialog.alignChildren = ["center","top"]; 
    dialog.spacing = 10; 
    dialog.margins = 16; 

// GROUP1
// ======
var group1 = dialog.add("group", undefined, {name: "group1"}); 
    group1.orientation = "row"; 
    group1.alignChildren = ["left","center"]; 
    group1.spacing = 10; 
    group1.margins = 0; 

var statictext1 = group1.add("statictext", undefined, undefined, {name: "statictext1"}); 
    statictext1.text = "Select the language"; 

var languages_array = ["-","Japanese","Simplified Chinese","Traditional Chinese","Korean","Thai"]; 
var languages = group1.add("dropdownlist", undefined, undefined, {name: "languages", items: languages_array}); 
    languages.selection = 0; 
    languages.preferredSize.width = 88; 

// GROUP2
// ======
var group2 = dialog.add("group", undefined, {name: "group2"}); 
    group2.orientation = "row"; 
    group2.alignChildren = ["left","center"]; 
    group2.spacing = 10; 
    group2.margins = 0; 

var Closebutton = group2.add("button", undefined, undefined, {name: "Closebutton"}); 
    Closebutton.text = "Cancel"; 
    Closebutton.justify = "left"; 
    Closebutton.alignment = ["left","top"]; 

var Runbutton = group2.add("button", undefined, undefined, {name: "Runbutton"}); 
    Runbutton.text = "Run"; 
    Runbutton.alignment = ["left","bottom"]; 


Runbutton.onClick = function(){
    if (languages.selection == "1")
{
    dialog.close();
    JP();
    alert("Font has been applied")  
}
    if (languages.selection == "4")
{
    dialog.close();
    KO();  
    alert("Font has been applied")
}
};

//Japanese GREP

function  JP() {
    if (app.layoutWindows.length == 0) return;
    var changeObject = app.documents[0];
    if (changeObject.hasOwnProperty('characters') && changeObject.characters.length == 0) return;
    var doc = app.documents[0];
    var style;
    var scriptVersion = app.scriptPreferences.version;
    app.scriptPreferences.version.constructor.name // Result:String
    var options = app.findChangeGrepOptions.properties;
    //it stops here
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    
// Query [[JP_black]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Black"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Heavy"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_bold]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Bold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Bold"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_bolditalic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Bold Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Bold", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_heavy]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Heavy"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Heavy"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_italic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Regular ", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_light]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Light"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Light"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_lightitalic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Light Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Light", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_reg]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Regular"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Regular "});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_semib1]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Semi Bold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Medium"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_semib2]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Semibold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Medium"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findChangeGrepOptions.properties = options;
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    app.scriptPreferences.version = scriptVersion;
};

function getStyleByString(docOrGroup, string, property) {
    if (string == '[No character style]') return docOrGroup[property][0];
    if (string == '[No paragraph style]') return docOrGroup[property][0];
    if (string == 'NormalParagraphStyle') return docOrGroup[property][1];
    stringResult = string.match (/^(.*?[^\\]):(.*)$/);
    var styleName = (stringResult) ? stringResult[1] : string;
    styleName = styleName.replace (/\\:/g, ':');
    remainingString = (stringResult) ? stringResult[2] : '';
    var newProperty = (stringResult) ? property.replace(/s$/, '') + 'Groups' : property;
    var styleOrGroup = docOrGroup[newProperty].itemByName(styleName);
    if (remainingString.length > 0 && styleOrGroup.isValid) styleOrGroup = getStyleByString (styleOrGroup, remainingString, property);
    return styleOrGroup;
};

// KO GREP
function KO() {
    if (app.layoutWindows.length == 0) return;
    var changeObject = app.documents[0];
    if (changeObject.hasOwnProperty('characters') && changeObject.characters.length == 0) return;
    var doc = app.documents[0];
    var style;
    var scriptVersion = app.scriptPreferences.version;
    app.scriptPreferences.version = 15.1;
    var options = app.findChangeGrepOptions.properties;
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_black]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Black"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Heavy"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_bold]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Bold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Bold"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_bolditalic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Bold Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Bold", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_heavy]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Heavy"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Heavy"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_italic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Regular ", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_light]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Light"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Light"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_lightitalic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Light Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Light", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_reg]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Regular"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Regular "});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_semib1]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Semi Bold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Medium"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_semib2]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Semibold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Medium"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findChangeGrepOptions.properties = options;
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    app.scriptPreferences.version = scriptVersion;
};

function getStyleByString(docOrGroup, string, property) {
    if (string == '[No character style]') return docOrGroup[property][0];
    if (string == '[No paragraph style]') return docOrGroup[property][0];
    if (string == 'NormalParagraphStyle') return docOrGroup[property][1];
    stringResult = string.match (/^(.*?[^\\]):(.*)$/);
    var styleName = (stringResult) ? stringResult[1] : string;
    styleName = styleName.replace (/\\:/g, ':');
    remainingString = (stringResult) ? stringResult[2] : '';
    var newProperty = (stringResult) ? property.replace(/s$/, '') + 'Groups' : property;
    var styleOrGroup = docOrGroup[newProperty].itemByName(styleName);
    if (remainingString.length > 0 && styleOrGroup.isValid) styleOrGroup = getStyleByString (styleOrGroup, remainingString, property);
    return styleOrGroup;
};



dialog.show();

重構腳本(如下)包括以下更改:

  1. ScriptUI 對話框的所有邏輯現在都在createConfigDialog function 中。

    • createConfigDialog function 的主體中我們還定義了一個hasChosen變量,即

      var hasChosen = undefined;
    • onClick事件處理程序中,我們將用戶選擇的任何結果分配給hasChosen變量。 例如:

       Runbutton.onClick = function() { if (languages.selection.text === "Japanese") { hasChosen = "Japanese"; } if (languages.selection.text === "Korean") { hasChosen = "Korean"; } dialog.close(); };
    • 然后createConfigDialog最后返回一個帶有hasChosen屬性的 object。 它的值是JapaneseKorean 例如:

       return { hasChosen: hasChosen }
  2. main function ( IIFE ) 中,我們調用createConfigDialog function。

    • 然后根據返回的hasChosen屬性的值有條件地調用JP()KO() function。 例如:

       (function main() { var dialog = createConfigDialog(); if (dialog.hasChosen === "Japanese") { JP(); alert("Font has been applied") } else if (dialog.hasChosen === "Korean") { KO(); alert("Font has been applied") } }());

完整的重構腳本:

function createConfigDialog() {

    var dialog = new Window("dialog");
        dialog.text = "Asian font replacement";
        dialog.orientation = "column";
        dialog.alignChildren = ["center","top"];
        dialog.spacing = 10;
        dialog.margins = 16;

    // GROUP1
    // ======
    var group1 = dialog.add("group", undefined, {name: "group1"});
        group1.orientation = "row";
        group1.alignChildren = ["left","center"];
        group1.spacing = 10;
        group1.margins = 0;

    var statictext1 = group1.add("statictext", undefined, undefined, {name: "statictext1"});
        statictext1.text = "Select the language";

    var languages_array = ["-","Japanese","Simplified Chinese","Traditional Chinese","Korean","Thai"];
    var languages = group1.add("dropdownlist", undefined, undefined, {name: "languages", items: languages_array});
        languages.selection = 0;
        languages.preferredSize.width = 88;

    // GROUP2
    // ======
    var group2 = dialog.add("group", undefined, {name: "group2"});
        group2.orientation = "row";
        group2.alignChildren = ["left","center"];
        group2.spacing = 10;
        group2.margins = 0;

    var Closebutton = group2.add("button", undefined, undefined, {name: "Closebutton"});
        Closebutton.text = "Cancel";
        Closebutton.justify = "left";
        Closebutton.alignment = ["left","top"];

    var Runbutton = group2.add("button", undefined, undefined, {name: "Runbutton"});
        Runbutton.text = "Run";
        Runbutton.alignment = ["left","bottom"];


    var hasChosen = undefined;

    Runbutton.onClick = function() {
        if (languages.selection.text === "Japanese") {
            hasChosen = "Japanese";
        }
        if (languages.selection.text === "Korean") {
            hasChosen = "Korean";
        }
        dialog.close();
    };

    var showDialog = dialog.show();

    if (showDialog === 2) { // User clicked `Cancel` button.
      exit();
    }

    return {
        hasChosen: hasChosen
    }
};

//Japanese GREP

function JP() {
    if (app.layoutWindows.length == 0) return;
    var changeObject = app.documents[0];
    if (changeObject.hasOwnProperty('characters') && changeObject.characters.length == 0) return;
    var doc = app.documents[0];
    var style;
    var scriptVersion = app.scriptPreferences.version;
    app.scriptPreferences.version.constructor.name // Result:String
    var options = app.findChangeGrepOptions.properties;
    //it stops here
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;

    // Query [[JP_black]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Black"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Heavy"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_bold]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Bold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Bold"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_bolditalic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Bold Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Bold", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_heavy]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Heavy"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Heavy"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_italic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Regular ", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_light]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Light"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Light"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_lightitalic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Light Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Light", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_reg]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Regular"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Regular "});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_semib1]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Semi Bold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Medium"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[JP_semib2]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Semibold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1248357235, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans JP", fontStyle:"Medium"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findChangeGrepOptions.properties = options;
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    app.scriptPreferences.version = scriptVersion;
};

function getStyleByString(docOrGroup, string, property) {
    if (string == '[No character style]') return docOrGroup[property][0];
    if (string == '[No paragraph style]') return docOrGroup[property][0];
    if (string == 'NormalParagraphStyle') return docOrGroup[property][1];
    stringResult = string.match (/^(.*?[^\\]):(.*)$/);
    var styleName = (stringResult) ? stringResult[1] : string;
    styleName = styleName.replace (/\\:/g, ':');
    remainingString = (stringResult) ? stringResult[2] : '';
    var newProperty = (stringResult) ? property.replace(/s$/, '') + 'Groups' : property;
    var styleOrGroup = docOrGroup[newProperty].itemByName(styleName);
    if (remainingString.length > 0 && styleOrGroup.isValid) styleOrGroup = getStyleByString (styleOrGroup, remainingString, property);
    return styleOrGroup;
};

// KO GREP
function KO() {
    if (app.layoutWindows.length == 0) return;
    var changeObject = app.documents[0];
    if (changeObject.hasOwnProperty('characters') && changeObject.characters.length == 0) return;
    var doc = app.documents[0];
    var style;
    var scriptVersion = app.scriptPreferences.version;
    app.scriptPreferences.version = 15.1;
    var options = app.findChangeGrepOptions.properties;
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_black]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Black"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Heavy"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_bold]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Bold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Bold"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_bolditalic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Bold Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Bold", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_heavy]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Heavy"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Heavy"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_italic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Regular ", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_light]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Light"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Light"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_lightitalic]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Light Italic"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Light", skew:11});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_reg]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Regular"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Regular "});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_semib1]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Semi Bold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Medium"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    // Query [[KO_semib2]] -- If you delete this comment you break the update function
    try {
        app.findChangeGrepOptions.properties = ({includeFootnotes:true, kanaSensitive:true, widthSensitive:true});
        app.findGrepPreferences.properties = ({findWhat:"[^.,;:?!-()%&\\[\\]\\d a-z|A-Z]+", fontStyle:"Semibold"});
        app.changeGrepPreferences.properties = ({kinsokuSet:1263692659, composer:"Adobe Japanese Paragraph Composer", appliedFont:"Source Han Sans KR", fontStyle:"Medium"});
        changeObject.changeGrep();
    } catch (e) {alert(e + ' at line ' + e.line)}
    app.findChangeGrepOptions.properties = options;
    app.findGrepPreferences = NothingEnum.NOTHING;
    app.changeGrepPreferences = NothingEnum.NOTHING;
    app.scriptPreferences.version = scriptVersion;
};

function getStyleByString(docOrGroup, string, property) {
    if (string == '[No character style]') return docOrGroup[property][0];
    if (string == '[No paragraph style]') return docOrGroup[property][0];
    if (string == 'NormalParagraphStyle') return docOrGroup[property][1];
    stringResult = string.match (/^(.*?[^\\]):(.*)$/);
    var styleName = (stringResult) ? stringResult[1] : string;
    styleName = styleName.replace (/\\:/g, ':');
    remainingString = (stringResult) ? stringResult[2] : '';
    var newProperty = (stringResult) ? property.replace(/s$/, '') + 'Groups' : property;
    var styleOrGroup = docOrGroup[newProperty].itemByName(styleName);
    if (remainingString.length > 0 && styleOrGroup.isValid) styleOrGroup = getStyleByString (styleOrGroup, remainingString, property);
    return styleOrGroup;
};


(function main() {

    var dialog = createConfigDialog();

    if (dialog.hasChosen === "Japanese") {
        JP();
        alert("Font has been applied")
    } else if (dialog.hasChosen === "Korean") {
        KO();
        alert("Font has been applied")
    }

}());

關於代碼樣式的附加說明:

按照慣例,以大寫名稱開頭的變量名,例如KOJP表示它是構造函數function,因此應該使用new運算符調用。 由於JPKO函數在您的代碼中都不是構造函數,我建議您考慮將它們設為小寫,例如分別為jpko (或例如japankorean )。

RunbuttonClosebutton類似 - 將它們的實例分別更改為例如runButtoncloseButton ,以省略大寫的第一個字母。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM