May 20, 201510 yr My problem seems simple enough but I can't seem to find the answer. I have tool tips attached to to Tab Panels,the problem is any where you run your cursor over in the tab panel shows the tool tip, I only want it to display when running the cursor over the label of the tab panel. Suggestions? Thank you! Caroline
May 20, 201510 yr I only want it to display when running the cursor over the label of the tab panel. I don't think that's possible; what you can do is prevent the tooltip from appearing entirely for the currently active tab. Give each tab an object name and use this calculation: Case ( not GetLayoutObjectAttribute ( tabNameInQuotes ; "isFrontPanel" ) ; “yourTooltipText”)
May 20, 201510 yr Author I don't think that's possible; what you can do is prevent the tooltip from appearing entirely for the currently active tab. Give each tab an object name and use this calculation: Case ( not GetLayoutObjectAttribute ( tabNameInQuotes ; "isFrontPanel" ) ; “yourTooltipText”) Thank you eos, I just tried your technique, worked perfectly, thank you!!!
Create an account or sign in to comment