Richtext - clickable text

Hello,
Is there any way to make some text clickable / hyperlink (without the use of a button), even with a wrapped text so we can trigger a function / custom event within UE?

For instance, having a wall of text, and some words here and there would be clickable (but not the whole text as a single unit if you know what I mean)
The Richtext documentation seems to say it’s possible:

https://dev.epicgames.com/documentation/en-us/unreal-engine/umg-rich-text-blocks-in-unreal-engine?application_version=5.6

But I cannot find any explanation about that.
Thanks.

Hello @IlliciteS ,
I’m sharing this post, which seems to explain a way to make it work correctly.

I’m also including a workaround that, while not considered best practice, can still be useful.
It involves using a Button, but setting the Alpha to 0 for the Normal, Hovered, and Pressed states, so it doesn’t visually look like a button at all.

Then, in the OnClicked event, you simply call Launch URL to open the link.

Hope it helps!

Hello @BRGEzedeRocco
Thanks for taking the time to find this answer. I just realized I must have been more precise.

I was looking for a way to click on a specific word in the middle of a text, which would then trigger a custom event / function in Unreal Engine. A specific hyperlink, but within UE, somehow.

But from what I’ve seen, this looks impossible to do in native UE (I’ve seen some plugings, but they change some C++ stuff I suppose). :confused:

I’ll edit the main post as a consequence.