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