I have a HTML5 application that serves as a menu for particular C++ games.
As of the moment, I'm using:
var ws = new ActiveXObject("WScript.Shell");
ws.Exec(this.GAME_PATH);
This is from my HTML5 application to run a C++ game when a button a press. I want for both applications to have a connection and real-time data communication. Any suggestions?