Skip to content

Instantly share code, notes, and snippets.

@stebrech
Last active September 23, 2020 09:47
Show Gist options
  • Save stebrech/d0696a449626c996f56bb27e82cb3ec1 to your computer and use it in GitHub Desktop.
Save stebrech/d0696a449626c996f56bb27e82cb3ec1 to your computer and use it in GitHub Desktop.
Keystroke script alows only defined characters
// Specify which character are allowed
var a = "123";
if (event.change !="") {
if (a.indexOf(event.change) == -1) {
// Customize alert message
app.alert("Das verwendete Zeichen ist nicht erlaubt!", 1);
event.rc = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment