Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
Neat trick!
Copy link to clipboard
Copied
Thanks. You can use the same trick with event.target.setAction to format fields as well.
Copy link to clipboard
Copied
But then you have to remove it later on, as it would cause an error when used in Reader.
Copy link to clipboard
Copied
You would remove after you moused over the fields as described, but it wouldn't cause a Reader error anyway. setAction works with Reader.
Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
No, the name property can't be changed in this way.
Copy link to clipboard
Copied
Highlighting multiple radio buttons in the same group, then changing the group name works for me. Keep in mind that you may end of with duplicate export values (choices). When I was experimenting with this I lost the functionality but it came back after restarting Acrobat.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now