
Search found 8 matches
- 02 Aug 2018, 02:51
- Forum: Scripts and Functions
- Topic: [Game] AHK Klondike Solitaire
- Replies: 18
- Views: 3053
Re: [Game] AHK Klondike Solitaire
Great script!!! Can you build in an "undo" (last set) option? 

- 28 Feb 2018, 16:41
- Forum: Scripts and Functions
- Topic: GUID & UUID
- Replies: 19
- Views: 7980
Re: GUID & UUID
You also can use COM

Code: Select all
GenerateGUID()
{
TypeLib := ComObjCreate("Scriptlet.TypeLib")
RANDOMGUID := TypeLib.Guid
Transform, RANDOMGUID, deref, %RANDOMGUID%
ObjRelease(TypeLib)
Return RANDOMGUID
}
- 25 Sep 2015, 09:42
- Forum: Scripts and Functions
- Topic: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
- Replies: 303
- Views: 114237
Re: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
Windows 8 Look a like gui's can be created using the following functions: LinearGradient (http://ahkscript.org/boards/viewtopic.php?f=6&t=3593) Class_ImageButton (http://ahkscript.org/boards/viewtopic.php?f=6&t=1103) I am using the "TechSmith SnagIt" setup application as an example. http://i60.tinyp...
- 02 Apr 2015, 01:38
- Forum: Scripts and Functions
- Topic: Circle progress bar
- Replies: 24
- Views: 12717
Re: Circle progress bar
That did the trick. Thanks!FanaticGuru wrote:You just need the 64 bit version of gdip.Ferry wrote:Nice! but it is not working on Unicode 64 bit for now.
https://www.dropbox.com/s/0e9gdfetbfa8v0o/Gdip_All.ahk
You have to rename that to Gdip.ahk and put in your lib folder.
FG
- 01 Apr 2015, 09:39
- Forum: Scripts and Functions
- Topic: Circle progress bar
- Replies: 24
- Views: 12717
Re: Circle progress bar
Nice! but it is not working on Unicode 64 bit for now.
- 18 Feb 2015, 15:11
- Forum: Ask For Help
- Topic: False positive on antivirus programs
- Replies: 3
- Views: 5304
Re: False positive on antivirus programs
Hi Gio, Thanks for your reply. I will do some tests regarding the use of mpress.exe. Is it possible to still use UPX.exe? Are there any other alternatives for mpress or upx? I'm not really worried about the code being visable or not but i'am worried about false positives and people claiming your pro...
- 18 Feb 2015, 14:22
- Forum: Ask For Help
- Topic: False positive on antivirus programs
- Replies: 3
- Views: 5304
False positive on antivirus programs
Hello, I'm using Autohotkey for serveral years now and i have build numerous applications/tools for both private and business environments. Let me be clear, i do not build virus or mallware like applications and i compile my programs on a clean (virtual) computer that is not connected to the interne...
- 22 Sep 2014, 09:21
- Forum: Scripts and Functions
- Topic: Set permissions for registry, files and folders
- Replies: 3
- Views: 2629
Set permissions for registry, files and folders
Just something i would like to share with you all :) ;ComObjError(false) ;AccessMask: 2032127 = FULL | 1179817 = READ | 1179958 = WRITE | 1245631 = CHANGE ;Flags: 0 = This folder only | 1 = This folder and files | 2 = This folder and subfolders | 3 = This folder, subfolders and files ;Examples SetSe...