showMessageBox (deprecated)
Deprecated! Better use showMessage instead
app.showMessageBox
Parameters
Example Usages
app.showMessageBox({
title: "sampel title",
text: "sampel text",
buttons: [
{
title: "myButton",
click: function () {
console.log("myButton clicked!!!!");
},
},
],
});Last updated