jQuery

Facebook Messenger (Donation)

Many donors of this blog prefer to donate their money through Facebook Messenger!

Click here to go to this blog's Facebook Page!

Thank you!

Buy Us a Coffee


Advertise On This Blog!

If you want a Product\Service\Event to be advertised on this blog, feel free to contact us!

Warning!!!

If you are a Newcomer and want to write Real Programs, please STAY AWAY from this POOR and BAD DESIGNED "Program Language" (it's an Automation Tool in fact)!!!

This Automation Tool is maintained by LAZY, STUPID and DUMBASSES PEOPLE who try to deceive you that AutoHotkey is a very Powerful Program Language, but believe me, it isn't!!!

No Enterprise takes AutoHotKey seriously, because they know how poor it is and because they know what kind of people are behind it!

If you need an Automation Tool, you can at least give it a try!!! If you need a Program Language, STAY AWAY FROM IT AS SOON AS POSSIBLE!!!

Thanks for your Attention!!!

Monday, August 2, 2021

[AutoHotKey] Force ActiveX Control to Use The Highest Internet Explorer Mode!


Wednesday, May 27, 2020

EXE_Path() Function for Compiled Scripts!


v1.0:



Keywords:
EXE_Path() Function for Compiled Scripts!

Monday, December 2, 2019

Auto Command - Detect any key and Mouse Movement


Download v1.0 (Include Script and ".exe" file):
http://www.mediafire.com/file/ncshx3lpofgcrc7/Auto_Command_%2528v1.0%2529_-_Detect_any_key_and_Mouse_Movement.rar/file

Auto Command v1.1 - Remap Mouse Movement (No Loop)
xm - How many pixels mouse moved right(+) or Left(-)
ym - How many pixels mouse moved Up(+) or down(-)
xsc - x pos from screen center _ Right(+)\Left(-)
ysc - y pos from screen center _ Up(+)\Down(-)


v1.1:





Keywords:
AutoHotKey - Detect any key and Mouse Movement
Detect Mouse Movement

Monday, November 11, 2019

Completely Remove a variable content from Ram!



Some functions may use "StrPut()" function to put plain text strings in Ram in order to be used with "DllCall()" function!

The problem is, you may not want the plain text strings to remain in Ram after the functions return!

If you use something like, Data := "", or, VarSetCapacity(Data, 0), or even, VarSetCapacity(Data, 0, 0), the "Data" variable is released but its content that contains plain text strings are still stored in Ram!

When a variable is released, it means that its content remains in Ram, but it can be overwritten by other contents!

So, before releasing a variable, make sure to overwrite all its content with "0" bytes, then release it! Doing so, all the plain text strings in Ram are overwritten with 0 bytes as well!

Example below:

VarSetCapacity(Data, , 0)        ;overwrite all the content from "Data" variable with 0 bytes!

Note that, the "RequestedCapacity" parameter is omitted in "VarSetCapacity()" function, so the current capacity of "Data" variable will be used! (Assuring that all its current capacity is overwritten with 0 bytes!)

Then you can use, Data := "", or, VarSetCapacity(Data, 0), to release "Data" variable in order to allow all its 0 bytes content to be overwritten with other contents! 




Keywords:
Completely Remove a variable data from Ram!
Completely Remove a variable value from Ram!
Completely Remove a variable content from Ram!

Wednesday, August 21, 2019

ExitApp vs ProcessClose









Keywords:
ExitApp Alternative
ExitApp vs ProcessClose
ExitApp vs Process Close

Friday, April 5, 2019

On_Mouse_Move(Function) - Mouse Move HotKey Alternative


v1.0:










Keywords:
AHK Mouse Move HotKey Alternative
AHK MouseMove HotKey Alternative
AHK On Mouse Move
AHK OnMouseMove
AutoHotKey On Mouse Move
AutoHotKey OnMouseMove
AutoHotkey Mouse Move HotKey Alternative
AutoHotkey MouseMove HotKey Alternative

Monday, April 1, 2019

UnicodeCrypter(Function) - Encrypt and Decrypt Any Unicode Character from 1 to 1114111



Encrypt and Decrypt Any Unicode Character from 1 to 1114111!

Download v1.0:
http://www.mediafire.com/file/rn99lw6eae6wj6v/UnicodeCrypter%2528Function%2529_-_v1.0.rar/file





keywords:
Unicode Crypter AHK
Unicode Crypter AutoHotkey
Unicode Crypt AHK
Unicode Crypt AutoHotkey
Unicode Encrypt AHK
Unicode Encrypt AutoHotkey
Unicode Decrypt AHK
Unicode Decrypt AutoHotkey
UnicodeCrypter(Function) - Encrypt and Decrypt Any Unicode Character from 1 to 1114111 (AutoHotKey)