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
; Pulover's Clipboard History | |
#NoEnv | |
#SingleInstance force | |
#InstallKeybdHook | |
Menu, Tray, Add, Show Clipboard History, ShowHistory | |
Menu, Tray, Add, Options, Options | |
Menu, Tray, Add, Pause, PauseScript | |
Menu, Tray, Add, Exit, Exit |
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
;======================================================================================= | |
; | |
; Class Properties | |
; | |
; Author: Pulover [Rodolfo U. Batista] | |
; [email protected] | |
; AHK version: 1.1.11.00 | |
; Release date: 24 July 2013 | |
; Depends on: Class_Rebar <https://gist.github.com/Pulover/6003125> | |
; |
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
#NoEnv | |
#SingleInstance, Force | |
SetBatchLines, -1 | |
Process, Priority,, High | |
#Include <Class_Toolbar> ; http://www.autohotkey.com/board/topic/94750-class-toolbar-create-and-modify | |
#Include <Class_Rebar> | |
Gui, +Resize | |
Gui, Add, Custom, ClassToolbarWindow32 hwndhToolbar x0 y0 h23 w500 0x0800 0x0100 0x0040 0x0008 0x0004 | |
Gui, Add, Custom, ClassReBarWindow32 hwndhRebar gRB_Notifications 0x0200 0x0400 0x0040 0x8000 |