I compiled my app with the new versión 2024.2 and now the heexternal doesn’t work anymore. I had this function:
function OpenBrowser(website) {
}
Why? How can I open a URL with the default browser now?
function OpenBrowser(website) {
Code:
//EXEOUTPUT
console.log(website);
url = "heexternal://" + website;
location.href = url;
Why? How can I open a URL with the default browser now?

