Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created June 7, 2024 11:39
Show Gist options
  • Save bjoerntx/7d28a26b80e08d45e6fcee12a417e543 to your computer and use it in GitHub Desktop.
Save bjoerntx/7d28a26b80e08d45e6fcee12a417e543 to your computer and use it in GitHub Desktop.
function showPrintMessage() {
var response = app.alert({
cMsg: 'Would you like to print this document?',
cTitle: 'Print Document',
nIcon: 2,
nType: 1 + 2
});
if (response == 4) {
this.print();
}
}
showPrintMessage();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment