This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ======================================================== | |
; Int to Hex | |
; ======================================================== | |
int2hex(int) | |
{ | |
HEX_INT := 8 | |
while (HEX_INT--) | |
{ | |
n := (int >> (HEX_INT * 4)) & 0xf | |
ret .= n > 9 ? chr(55 + n) : n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Created by Frankie Bagnardi | |
Forum topic: http://www.autohotkey.com/forum/topic74340.html | |
Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php | |
v0.5 | |
Modified by R3gX - http://www.autohotkey.com/board/topic/69236-regex-class/page-2#entry582249 | |
*/ | |
class RegEx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -version 2 | |
<# | |
.SYNOPSIS | |
<Overview of script> | |
.DESCRIPTION | |
<Brief description of script> | |
.PARAMETER <Parameter_Name> | |
<Brief description of parameter input required. Repeat this attribute if required> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ====================================================================================================================== | |
; AHKRCMS AutoHotkey Right-Click Menu Settings | |
; Function: Customise your AHK right-click menu. | |
; AHK version: AHK 1.1.13.01 | |
; Tested on: Win XP (x86) / Win 7 (x64) | |
; Version: 1.0.00.00/2013-12-04/just me | |
; Remarks: All changes are stored in the key HKEY_CURRENT_USER\Software\Classes\AutoHotkey in the current user | |
; branch of the registry. Changes can be reset easily by clicking the "Restore AHK defaults" button or | |
; removing the entire key with RegEdit.exe manually. | |
; The script relies on the current AHK 1.1 default installation registry keys, folder structures and |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ====================================================================================================================== | |
; Namespace: TransparentListBox | |
; AHK version: AHK 1.1.13.00 | |
; Function: Helper object for transparent ListBoxes | |
; Language: English | |
; Tested on: Win XP (U32) & Win7 x64 (U64) | |
; Version: 0.1.00.00/2013-10-03/just me - Initial release. | |
; ====================================================================================================================== | |
; CLASS TransparentListBox | |
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;======================================================================== | |
; | |
; TreeView Browser | |
; | |
; Author: Pulover [Rodolfo U. Batista] | |
; [email protected] | |
; | |
; Requires CreateTreeView.ahk (Thanks Learning one for this function) | |
; http://www.autohotkey.com/board/topic/92863-function-createtreeview/ | |
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;======================================================================== | |
; | |
; Dynamic Function Tester | |
; | |
; Author: Pulover [Rodolfo U. Batista] | |
; [email protected] | |
; | |
;======================================================================== | |
; Number of Rows for each parameter and for result: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;======================================================================================= | |
; | |
; MouseExtras | |
; | |
; Author: Pulover [Rodolfo U. Batista] | |
; [email protected] | |
; | |
; Assign Labels to Button Hold & Double Click | |
;======================================================================================= | |
/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;======================================================================================= | |
; | |
; Function: CreateIconsDll | |
; Description: Creates an Icon Resources Dll from ico files in a folder. | |
; | |
; Author: Pulover [Rodolfo U. Batista] ([email protected]) | |
; Credits: DllCreateEmpty() by SKAN | |
; ReplaceIcon() based on ReplaceAhkIcon() by fincs | |
; | |
;======================================================================================= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ====================================================================================================================== | |
; Function: Constants for ListView controls | |
; AHK version: 1.1.05+ | |
; Language: English | |
; Version: 1.0.00.00/2012-04-01/just me | |
; 1.0.01.00/2012-05-20/just me - fixed some typos | |
; ====================================================================================================================== | |
; CCM_FIRST = 8192 (0x2000) | |
; LVM_FIRST = 4096 (0x1000) ; ListView messages | |
; LVN_FIRST = -100 ; ListView notifications |
NewerOlder