Hi there,
I’m working in a big firm with big team. We have many links to browse daily, internally through a server to open the files and work. To make it easy for the team, I have designed a small tool, something like favorite links and gave all the urls. Now comes the problem. I used the get URL function. The getURL function works but it is coming in twice, in two windows like a repeatition.
The problem is the getURL is actually working as per its defined function, it is opening in browser. And at the same time, as per the script, it is also opening from the server too. So two ways it is working. But I need to get the result only in one window. Either in browser or in normal window.
Please help!!! Example of my link is given below:
on(release){
getURL(“R:/abc/123/xyz/files”, “_blank”);
}
If I open in html the link is working only one time. But published exe is resulting in two windows for getURL function.
Is it because of the internal server?
Is there any alternative way similar to getURL?