Shoutbox

[question] Opening a link from a script - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [question] Opening a link from a script (/showthread.php?tid=61338)

[question] Opening a link from a script by Flatron on 06-25-2006 at 03:58 PM

Is it possible, to open an URL from a script?
I would like to open an URL, when the user clicks on the DisplayToast window.


RE: [question] Opening a link from a script by mathieumg on 06-25-2006 at 04:03 PM

code:
new ActiveXObject("wscript.shell").run("http://www.msgpluslive.net");


Should open using the default browser.
RE: [question] Opening a link from a script by Flatron on 06-25-2006 at 04:56 PM

Works, Thanks.