quote:
Originally posted by Hen
Can I do that? :
Write a program in TCL
I don't know if you can write TCL programs...
quote:
Originally posted by Hen
enable the camera, output will be a nice window
I also don't know if you can access the camera from within TCL.
quote:
Originally posted by Hen
Call the TCL (or other C++) program from messenger plus
You can run any command in Messenger Plus! scripts. Just create a COM object and run your line:
jscript code:
var objShell = new ActiveXObject("WScript.Shell");
var strCommand = "calc"; // just example, should open the Calculator
var intResult = objShell.Run(strCommand);
You can find more information on the Run command in the
MSDN documentation.