welsonjs/lib/virtualinput.js

32 lines
716 B
JavaScript

//////////////////////////////////////////////////////////////////////////////////
// VirtualInput API
/////////////////////////////////////////////////////////////////////////////////
var VirtualInputObject = function() {
this.oShell = null;
this.oAutoIt = null;
this.create = function() {
try {
this.oShell = CreateObject("WScript.Shell");
this.oAutoIt = CreateObject("AutoItX.Control");
} catch (e) {
console.error("VirtualInputObject.create() -> " + e.message);
}
);
this.moveMouse = function(x, y) {
this.oAutoIt.MouseMove(x, y);
};
this.sendKeys = function(s) {
this.oShell.SendKeys(s);
};
this.create();
};
exports.create = function() {
return new VirtualInputObject();
};