JavaScript 对话框返回
我有一个绘制对话框的 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();
}
I've got a JavaScript function that draws a dialog. I'd like to have it return the value the user specifies. The problem is, the dialog is closed when a user clicks on of two buttons, which have onClick
events assigned to them. The only way I know to grab these events is by assigning functions to them, which means that a return causes the assigned function to return, and not my inputDialog function. I'm sure I'm just doing this in a stupid way.
In case you're wondering, this script is using Adobe's ExtendScript API for extending After Effects.
Here's the code:
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();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经想出了一个解决方案。这真的很难看,但现在它会让我渡过难关......有人有更好的解决方案吗?
I've come up with a solution. It's really ugly, but it'll tide me over for now... Anyone have a better solution?
使用特定整数关闭对话框可能会稍微好一些。然后,您可以检查
show()
的返回值并返回适当的值。请参阅 jongware 对 ExtendScript ScriptUI 窗口的关闭方法 的引用。It might be slightly better to close the dialog with a specific integer. You can then check the return value from
show()
and return the appropriate value. See jongware's reference to ExtendScript ScriptUI Window's close method.