Sparx Systems Forum
Enterprise Architect => Automation Interface, Add-Ins and Tools => Topic started by: Svend Erik Nygaard on December 23, 2018, 02:12:30 am
-
How do I open webpage in a browser from an EA JScript.
E.g. I want to add a script to an element's context menu that opens a webpage with specialized documentation views on that element.
-
How do I open webpage in a browser from an EA JScript.
Hi
Below snippet is used to open webpage in EA Script.
var page= new ActiveXObject("WScript.Shell");
page.run("www.google.com");
Arshad
-
Great.
Thanks a lot, Arshad.
I'll try that as the first thing in the new year (I hope :))
-
Hi Svend
Cool :)
-
Yep, it works fine - thanks again :-)