JavaScript对话框返回

问题描述 投票:2回答:2

我有一个绘制对话框的JavaScript函数。我想让它返回用户指定的值。问题是,当用户单击分配了onClick事件的两个按钮时,该对话框关闭。我知道捕获这些事件的唯一方法是为它们分配函数,这意味着返回会导致分配的函数返回,而不是我的inputDialog函数。我确定我只是以一种愚蠢的方式这样做。

如果您想知道,该脚本使用Adobe的ExtendScript API扩展After Effects。

这里是代码:

function inputDialog (queryString, title){
    // Create a window of type dialog.
    var dia = new Window("dialog", title, [100,100,330,200]);  // bounds = [left, top, right, bottom]
    this.windowRef = dia;

    // Add the components, a label, two buttons and input
    dia.label = dia.add("statictext", [20, 10, 210, 30]);
    dia.label.text = queryString;
    dia.input = dia.add("edittext", [20, 30, 210, 50]);
    dia.input.textselection = "New Selection";
    dia.input.active = true;
    dia.okBtn = dia.add("button", [20,65,105,85], "OK");
    dia.cancelBtn = dia.add("button", [120, 65, 210, 85], "Cancel");


    // Register event listeners that define the button behavior

    //user clicked OK
    dia.okBtn.onClick = function() {
        if(dia.input.text != "") { //check that the text input wasn't empty
            var result = dia.input.text;
            dia.close(); //close the window
            if(debug) alert(result);
            return result;
        } else { //the text box is blank
            alert("Please enter a value."); //don't close the window, ask the user to enter something
        }
    };

    //user clicked Cancel
    dia.cancelBtn.onClick = function() {
        dia.close();
        if(debug) alert("dialog cancelled");
        return false;
    };

    // Display the window
    dia.show();

}
javascript function return-value return extendscript
2个回答
0
投票

我想出了一个解决方案。这确实很丑陋,但是现在它会帮我渡过...任何人都有更好的解决方案?

    var ret = null;

    // Register event listeners that define the button behavior
    dia.okBtn.onClick = function() {
        if(dia.input.text != "") { //check that the text input wasn't empty
            var result = dia.input.text;
            dia.close(); //close the window
            if(debug) alert(result);
            ret = result;
            return result;
        } else { //the text box is blank
            alert("Please enter a value."); //don't close the window, ask the user to enter something
        }
    };

    dia.cancelBtn.onClick = function() { //user cancelled action
        dia.close();
        ret = false;
        return false;
    };

    // Display the window
    dia.show();

    while(ret == null){};
    return ret;

0
投票

使用特定的整数关闭对话框可能会更好。然后,您可以检查show()的返回值并返回适当的值。请参阅jongware对ExtendScript ScriptUI Window's close method的引用。

// Register event listeners that define the button behavior
dia.okBtn.onClick = function() {
    if(dia.input.text != "") { //check that the text input wasn't empty
        dia.close(1); //close the window
    } else { //the text box is blank
        alert("Please enter a value."); //don't close the window, ask the user to enter something
    }
};

dia.cancelBtn.onClick = function() { //user cancelled action
    dia.close(2);
};


var buttonCloseValue = dia.show(); //blocks until user interaction
if(dia.show() == 1) {
    if(debug) alert(dia.input.text);
    return dia.input.text;
}
return false;
© www.soinside.com 2019 - 2024. All rights reserved.