I try to disable the tooltip info.
SetAxProperty("ShowTooltips",0) or
SetAxDocProperty(ActiveDocId, "ShowTooltips", "0")
It doesn't work ^^ can you please provide me the correct command ??
thx alot!
Quick Question about Tooltip!!
Moderators: PDF-XChange Support, Daniel - PDF-XChange, Chris - PDF-XChange, Sean - PDF-XChange, Vasyl - PDF-XChange, Ivan - Tracker Software, Stefan - PDF-XChange
-
- Site Admin
- Posts: 19885
- Joined: Mon Jan 12, 2009 8:07 am
Re: Quick Question about Tooltip!!
Hello adntES,
The ShowTooltips command is only related to comments, so if you want to disable e.g. toolbar button tooltips - I am not sure how this can be done and have asked the guys in the dev team for help.
Best,
Stefan
The ShowTooltips command is only related to comments, so if you want to disable e.g. toolbar button tooltips - I am not sure how this can be done and have asked the guys in the dev team for help.
Best,
Stefan
-
- Site Admin
- Posts: 2445
- Joined: Thu Jun 30, 2005 4:11 pm
Re: Quick Question about Tooltip!!
Hi, adntES.
Best
regards.
Code: Select all
// to disable tooltips for toobar/menu items:
ctrl.SetProperty("View.ShowTooltipsOnToolbars", 0);
// to disable tooltips for comments on the pages:
ctrl.SetProperty("Commenting.ShowTooltips", 0);
// and optionally - to disable special indicators (small yellow icon) for comments with non-empty pop-ups:
ctrl.SetProperty("Commenting.ShowTextIndicators", 0);
regards.
PDF-XChange Co. LTD (Project Developer)
Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
-
- User
- Posts: 71
- Joined: Fri Mar 25, 2011 5:43 pm
Re: Quick Question about Tooltip!!
thx works like a charm!!
-
- Site Admin
- Posts: 19885
- Joined: Mon Jan 12, 2009 8:07 am
Re: Quick Question about Tooltip!!
You are welcome adntES,
And I have made a note to the guys responsible for the manual to include the View.ShowTooltipsOnToolbars option in there, as it's currently not mentioned - the other two are correctly documented.
Best,
Stefan
And I have made a note to the guys responsible for the manual to include the View.ShowTooltipsOnToolbars option in there, as it's currently not mentioned - the other two are correctly documented.
Best,
Stefan