Now support native scripts. You no longer need Auto IT or AutoHotKey scripts, but you can code native green macro scripts easily.
please visit https://geafktools.appspot.com/index.html for tutorial, sample scripts, library, function list etc.
a sample script here:
var y=0x1c;
var fx=0;
var fy=0;
var sx=0;
var sy=0;
var fnd;
function x(param1,param2)
{
//your own function here
return true;
}
function main(){ //always have a main function
//WriteLogFile("log1.txt", "activetate...");
RunApp("calc.exe", "");
Delay(1000);
if(ActiveWindow("calc.exe"))
{
x(9,18);
Delay(1000);
var v1=SKeyDown(0x08);//send a scan key 0x08 down
WriteLogFile("log1.txt",v1);
Delay(50);
var v2=SKeyUp(0x08); //send a scan key 0x08 up
WriteLogFile("log1.txt",v2);
Delay(50);
v1=VKeyDown(0x37); //send a scan virtual key 0x37 down
WriteLogFile("log1.txt",v1);
Delay(50);
var v2=VKeyUp(0x37); //send a scan virtual key 0x37 up
WriteLogFile("log1.txt",v2);
Delay(500);
var m1=MouseMoveTo(0,0); //mouse move to top left coroner of screen
WriteLogFile("log1.txt","move:"+ m1);
}
}
Sunday, 29 September 2013
Thursday, 22 August 2013
New version coming soon...old version disabled for now...
The new version of the green macro tool will support a native script similar to javascript.
This way you will not need to make DLL call or any third party scripting tool like AutoIT3 or AutoHotkey...
*and* Xtrap/GG/NP will not able to intercept your DLL calls...
But... the new version will backward compatible with old version and third party scripts like AutoIT3 or AutoHotkey... DLL calls still there and no change.
Window 7&8 version still NOTunder development yet due to the lack of such operation system. I am still stick to XP and no budget to upgrade yet.
Btw the old version is disabled and off the shelf now...any one who still need it in the mean time, please let me know by leaving a comment or request thru email.
Thank you.
This way you will not need to make DLL call or any third party scripting tool like AutoIT3 or AutoHotkey...
*and* Xtrap/GG/NP will not able to intercept your DLL calls...
But... the new version will backward compatible with old version and third party scripts like AutoIT3 or AutoHotkey... DLL calls still there and no change.
Window 7&8 version still NOTunder development yet due to the lack of such operation system. I am still stick to XP and no budget to upgrade yet.
Btw the old version is disabled and off the shelf now...any one who still need it in the mean time, please let me know by leaving a comment or request thru email.
Thank you.
Subscribe to:
Posts (Atom)