-1

I'm using this javaScript code:

gotoExternalApp = function () { 
    var options = Environment.appOptions; 
    console.log ("Launching " + options.appName); 
    ExternalApp.launch(options); }; 
    gotoExternalApp(); 
    return false;
});
epascarello
  • 204,599
  • 20
  • 195
  • 236

1 Answers1

0

Do you want to open these from a web browser? I'm not sure this is possible due to the security restrictions of JavaScript. You could use activex as they have in this post... How to run an external program, e.g. notepad, using hyperlink?

Community
  • 1
  • 1
Ben Cameron
  • 4,335
  • 6
  • 51
  • 77