Hello Nithin,
Can you try the following code:
var WshShell = new ActiveXObject("Shell.Application");
WshShell.ShellExecute("http://www.website.com");
WshShell = null;
I guess, this should work.
On Jul 27, 10:23 pm, "Nitin Sharma" <niti...@gmail.com> wrote:
I tried as was in the knowledge base of intuitive user interface, tips and
tricks to add up a new menu item.
eg: menu.AddItem(.....,) { new
ActiveXObject("WScript.Shell").Run("http://www.website.com"); } ;
It gave me the error : on the same line with description " . "
I changed the code as such, still the same error!
var WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run("http://www.website.com");
WshShell.Quit;
Any ideas ? Faced sth like this before ?
Thanks