Skip to content

Instantly share code, notes, and snippets.

@stebrech
Last active September 24, 2020 09:22
Show Gist options
  • Save stebrech/23fc3727f1c02671d9e3eac431ffa9bb to your computer and use it in GitHub Desktop.
Save stebrech/23fc3727f1c02671d9e3eac431ffa9bb to your computer and use it in GitHub Desktop.
Acrobat keystroke script allows only numbers
var b=/^\d$/
if (event.change != "") {
if (b.test(event.change) == false) {
// Alert message to customize
app.alert("Bitte nur Zahlen verwenden!", 1);
event.rc = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment