Jump to content

Tooltip on a Tab Panel


Answers

This topic is 3257 days old. Please don't post here. Open a new topic instead.

Recommended Posts

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

Link to comment
Share on other sites

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”
)

Link to comment
Share on other sites

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!!!​

Link to comment
Share on other sites

This topic is 3257 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.