Skip to main content
Inspiring
April 16, 2020
Question

Checkbox selected triggers popup notification

  • April 16, 2020
  • 2 replies
  • 1104 views

I'd like to have a checkbox field named Multipstep, when selected, to trigger the default notification popup with a message I've configured. I don't see this as an available option in Actions, so I assume it requires JavaScript. Anyone know how I'd code this?

This topic has been closed for replies.

2 replies

Thom Parker
Community Expert
Community Expert
April 16, 2020
Thom Parker - Software Developer at PDFScriptingUse the Acrobat JavaScript Reference early and often
Inspiring
April 16, 2020

Solved my own problem. If anyone encounters this, the code I used was: 

if (event.target.value != "Off") { // box is checked app.alert("MY CUSTOM ALERT MESSAGE HERE");

}

else { // box is unchecked

}

 

I added a JavaScript "Mouse Up" action to the checkbox to display this alert. There may be a better way, but this seems to work for me.