-
1. Re: tooltip
George_Johnson Aug 19, 2013 7:24 AM (in response to shay_df)No, you have no control over this, but you can run a simple script afterwards to remove them. If you'd like help with this, post again.
-
2. Re: tooltip
shay_df Aug 19, 2013 7:02 AM (in response to George_Johnson)yes, i'd like to get help with this, but i have no knowledege with script writing
-
3. Re: tooltip
George_Johnson Aug 19, 2013 7:23 AM (in response to shay_df)You can use the following script in the Mouse Up event of a temporary button that you create manually:
// Loop through all of the fields in the document
for (var i = 0; i < numFields; i += 1) {
var f = getField(getNthFieldName(i));
// Set the tooltip text to nothing
if (f) {
f.userName = "";
}
}
When you click the button, the code will execute and it will clear the tooltip text of all of the fields. You can then delete the button. You can run the same code just as easily from the interactive JavaScript console or a temporary bookmark or link.
-
4. Re: tooltip
shay_df Aug 19, 2013 7:20 AM (in response to George_Johnson)it works great. thank you


