Skip to main content
Participating Frequently
October 24, 2025
Answered

How do I change the Tooltip for multiple fields at the same time?

  • October 24, 2025
  • 2 replies
  • 256 views

I have forms I'm creating and the automated form builder sets all the tool tips to match the field titles, but I need all the fields in the same column to have the same tooltip.  How do I change all the fields in the column to the same tooltip at once without having to go one by one idividually.  

 

I'm using Acrobat Pro.

 

No paid solutions please.

Thank you.

Correct answer PDF Automation Station

In Prepare Form mode, drag your cursor over all the fields to select them all.  Once they are selected, right-click on one of them, select Properties, and enter the following Mouse Enter script in the actions tab:

event.target.userName="ABC";

where ABC is the tooltip.  Leave form editing mode and slowly run your cursor across all fields.  You can then remove the scripts (although not necessary) by selecting all fields again in form editing mode, right-click > Properties on one, then delete the script.

2 replies

PDF Automation Station
Community Expert
Community Expert
October 25, 2025

In Prepare Form mode, drag your cursor over all the fields to select them all.  Once they are selected, right-click on one of them, select Properties, and enter the following Mouse Enter script in the actions tab:

event.target.userName="ABC";

where ABC is the tooltip.  Leave form editing mode and slowly run your cursor across all fields.  You can then remove the scripts (although not necessary) by selecting all fields again in form editing mode, right-click > Properties on one, then delete the script.

try67
Community Expert
Community Expert
October 25, 2025

Neat trick!

Participating Frequently
October 27, 2025

Thanks.  You can use the same trick with event.target.setAction to format fields as well.


Is there a way to use this kind of trick to change Groups for radio buttons? Currently I just have to go one by one and type in the name of the group, there doesn't seem to be a way to say, highlight 4 radio buttons and assign them to a different new group

try67
Community Expert
Community Expert
October 24, 2025

This is a bit tricky to do. If the fields are perfectly aligned (and are the only ones at that x-location on the page) then you can use a script to identify them based on their location, and then change their tooltips all at once. Or if they follow a specific name pattern then it can also be done using a script that will search for fields that match that pattern, and then edit them.