I have a code that opens software external to my application.
<script>
function run(file) {
var ws;
ws = new ActiveXObject("WScript.Shell");
ws.run(file);
}
</script>
Only the external software opens on the computer as usual, I want to make this software open inside the web page in html.
How can I fix this software on the page, can I do this?