Skip to main content
merchantdon
Participating Frequently
March 5, 2024
Question

Can bullets be added to an interactive forms using Adobe Reader?

  • March 5, 2024
  • 1 reply
  • 1626 views

Is there a way our members can add bullets to the forms we provide them? I know you can copy and paste them to the textbox, but I would like to allow the reader to add them.

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
March 5, 2024

It's possible to add it automatically using a script, for example using this code as the field's custom Keystroke event (it needs to be a multiline field, of course). The bullet will be added when the user press Ctrl+Enter:

 

if (event.change=="\n" && event.modifier) event.change+="\u2022 ";
merchantdon
Participating Frequently
March 6, 2024

Thank you for taking the time to respond to my question. I'm not sure exactly how to go about implementing your suggestion. I don't mind reading if you could point me in the right direction. Thank you in advance. 

try67
Community Expert
Community Expert
March 6, 2024

Go to the field's Properties, Format, select Custom and paste the code under the Keystroke event.