Skip to content

Instantly share code, notes, and snippets.

View CCCBBBAAAHIGHSCORE's full-sized avatar

CCCBBBAAAHIGHSCORE

View GitHub Profile
@CCCBBBAAAHIGHSCORE
CCCBBBAAAHIGHSCORE / SIDEBARNOTE.ahk
Created November 4, 2017 14:00
SidebarnoteGUI.ahk
#SingleInstance, Force
#NoTrayIcon
;Menu, Tray, Icon, D:\Users\name\Documents\AutoHotKey-Scripts-Master\img\noteicone2.ico
DetectHiddenWindows, On
GroupAdd, TotalGui, Tabs
GroupAdd, TotalGui, Notes
GroupAdd, TotalGui, NoteList
GroupAdd, TotalGui, separatetabfromnote
@CCCBBBAAAHIGHSCORE
CCCBBBAAAHIGHSCORE / Sidebar for notes in autohotkey
Created May 10, 2017 11:06
Sidebar for notes in autohotkey (work in progress)
gui_state = closed
Return ; end of autoexecute
ScrollLock::
if gui_state != closed
{
; If the GUI is already open, close it.
gui, Destroy
@CCCBBBAAAHIGHSCORE
CCCBBBAAAHIGHSCORE / Autohotkey Script Tool.ahk
Last active May 8, 2017 10:31
this script remember the key name in autohotkey and helps you to code faster, exemple press Numlock and Tab will send : tab ; press Numlock and almost anykey will send the key name
; hello, this script is made by u/pkip , and the help of tidbit for the last but useful line of code
; It allow you to forget the real key name or to code it faster
; press Numlock & F1 will send F1
; More usefull for unusual key like AppsKey or Launch_App1
; it also work with the Mouse button and the numpad.
; the first 4 lines are there to work around the L or R control thing, don't worry about it, they work like this :
; ctrl Space --> Ctrl
; since sometime you dont want to differentiate the LCtrl and RCtrl.
^space:: Send, {^}{space} ; Ctrl it gives " ^ " so when you press ctrl the symbol is written
!space:: Send, {!} ; Alt