- Edited
I can't figure out how to use hyperlinks within rich text labels, i've tried to add bbcode to it, e.g. "Press here", where "here" is an hyperlink set with [url=http://www.google.com/]here[/url], and use a meta signal interrupt like so:
func _on_RichTextLabel_meta_clicked( meta ):
print("1")
if meta == "here":
print("2")
OS.shell_open("http://www.google.com/")
But without any success so far