Changing tooltip text makes it hidden

Hi!

I’m trying to change tooltip of UserWidget element by some event. When I’m doing this and user already maked it appear, tooltip is hiding. So I have no possibility to check some state in tick event, for example and change my interface dynamicaly.

Is that just a problem of mine?

Hello ,

The tool tips are working on my end. I have set up a tool tip to change whenever I click a button in UMG. I will provide my Event graph and my Tool Tip Text binding that I used and you can tell me what it is that we are doing differently and go from there.

My Event graph for my widget:

My binding for the Tool Tip Text of a Text block:

22753-tooltiptips2.png

Hello, .

Thank you for the answer.

Try to change tooltip in every tick event (or with some interval, but in tick). And you will see the problem.

Hello ,

I was able to reproduce the issue that you are describing. However, this feature is working as intended. If you would like to have a tool tip that updates dynamically you could try binding. I got this to work for me. I have simple example of a random float that updates the tool tip every frame. The binding function can be found in the details panel of the widget you would like to use. Click the “Bind” button > Create new binding. I hope this helps.

My example:

22862-dynamictooltip.png

Make it a great day

Thank you, !