These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Radio Buttons, Check Boxes & Tooltips

mminman
Registered: Sep 10 2011
Posts: 3
Answered

Hi,
 
I'm a brand new Acrobat user building my first form. I want users to select only one of three options (I've figured this out, same name dif export values), and I want each of the three options to show a different tooltip. I've not been able to figure this second part out.
 
Any help or suggestions will be greatly appreciated. The simpler the solution the better of course.

Matthew

My Product Information:
Acrobat Pro 9.4.3, Windows
try67
Expert
Registered: Oct 30 2008
Posts: 2398
Accepted Answer
Not possible, since this property is shared by all fields with the same name.
What you can do, however, is create a MouseEnter and MouseExit script that shows/hides a text field that contains the text you want to display.

- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com

mminman
Registered: Sep 10 2011
Posts: 3
Got it. Thanks!

OT Question - I tried the following to disable highlighting of fields:

Advanced > Document Processing > Document JavscriptsNamed script Disable_Highlighting. Clicked Add and...

In the Javascript Editor window typed:

function DisableHighlighting()
{
app.runtimeHighlight = false;
}
DisableHighlighting();

Clicked OK then Close.
Saved document and opened it in Reader 9...

It didn't work. Any thoughts?

Matthew

maxwyss
Registered: Jul 25 2006
Posts: 255
There is not really a need for defining a function; simply enter the

app.runtimeHighlight = false ;

line in the document level script.

This should do what you want.

Hope this can help.

Max Wyss.


mminman
Registered: Sep 10 2011
Posts: 3
Okay, I've figured out the problem. app.runtimeHighlight = false means the doc will start with the fields not highlighted. Problem is, I want the feature disabled, such that users have no option to highlight the fields period.

Matthew

maxwyss
Registered: Jul 25 2006
Posts: 255
Completely disabling runtimeHighlight is not possible under normal circumstances. It might be possible if you have full control over the user's Acrobat configutation and you distribute Acrobat/Reader vie Adobe's deployment tools.

Hope this can help.

Max Wyss.

Merlin
Acrobat 9ExpertTeam
Registered: Mar 1 2006
Posts: 766
maxwyss wrote:
There is not really a need for defining a function; simply enter the
app.runtimeHighlight = false ;
line in the document level script.
Hi,

this script is more secure because it will not thrown an error with older versions:

if (typeof app.formsVersion != 'undefined' && app.formsVersion >= 6) {app.runtimeHighlight = false;}
Merlin
Acrobat 9ExpertTeam
Registered: Mar 1 2006
Posts: 766
The "focus rectangle" can also be disabled:

app.focusRect = false;

;-)
maxwyss
Registered: Jul 25 2006
Posts: 255
Agreed on the viewer version sniffing.