Clickable Links

Hey,

imagine a chat view with multiple Text elements, all in Each - what is the best way to make the URLs clickable? I checked https://www.fusetools.com/community/forums/howto_discussions/text_with_url?page=1&highlight=36269d66-b898-40f1-a334-7ac0957c20bb#post-36269d66-b898-40f1-a334-7ac0957c20bb but this doesn’t seem to be practical in this case. Also: multiple URLs in one Text element.

Hi!

Look into the launcher API for launching a web browser with a URL:

https://www.fusetools.com/learn/fuse#fuse-launcher

Hey,

I already got that, but this is what its looking like:

messages: [

{
    message: 'I am a Text! http://google.com and http://github.com'
},
{
    message: 'I am a second Text! http://google.com and http://github.com'
}
]

  <Each Items="{messages}">

      <TextValue="{message}"></Text>
</Each>