Suche // Search:

09.11.2009

Tooltip per Script manipulieren
//
Change Tooltip through a script

Nützlich sind sie allemal, die Tooltips.

Aber man kann jedem Objekt immer nur einen zuweisen.
Was wenn sich die Bedeuteung des Objekts aber geändert hat?
Dann kann die Information sogar Verwirrung stiften.
Um das zu vermeiden, können Sie die Tooltips durch ein beliebiges Ereignis im Formular ändern.
Alles was sie dafür brauchen, ist ein kleines Script (JavaScript oder FormCalc).


They are handy these tooltips.

But you only can assign one the each form object.
What if the meaning of this object has changed?
The tooltip then even can confuse the user.
To get rid of this problem, you can change the tooltip on any event.
All you need is a small script (JavaScript or FormCalc).

JavaScript:
xfa.resolveNode(SOMexpression).assist.toolTip.value = "Your Tooltip text";

FormCalc:
$xfa.resolveNode(SOMexpression).assist.toolTip.value = "Your Tooltip text"



Beispiel/Example:
https://acrobat.com/#d=Y3LrHMV*4iZCoAuITtvnoQ

Keine Kommentare:

Kommentar veröffentlichen