Opening pages on browser

Hello,

I am a rookie here and I suddenly had an idea. Is it possible to add hyperlinks/clickable links which when clicked, open a page on a web browser?

Best!
V

You could use the html property:

<a href="https://openstagecontrol.ammd.net/">Open Stage Control</a>

or the script property of a button:

// executed when button is clicked
openUrl("https://openstagecontrol.ammd.net/")
2 Likes

I'll give that a go! Thanks a lot!!

Is it possible to run the url without opening a new tab in the browser?

Add this attribute to the a element : target="_self" ?

Is it possible to run the url without opening a new tab in the browser?

Not with the above methods, I guess something could be worked out with a frame widget though.

1 Like