Skip to content

Instantly share code, notes, and snippets.

@Visionary1
Visionary1 / GDI.ahk
Created November 24, 2015 03:11 — forked from G33kDude/GDI.ahk
GDI wrapper for AutoHotkey
class GDI
{
__New(hWnd, CliWidth=0, CliHeight=0)
{
if !(CliWidth && CliHeight)
{
VarSetCapacity(Rect, 16, 0)
DllCall("GetClientRect", "Ptr", hWnd, "Ptr", &Rect)
CliWidth := NumGet(Rect, 8, "Int")
CliHeight := NumGet(Rect, 12, "Int")
@Visionary1
Visionary1 / AutoHotKey Simple Title Animation
Created November 24, 2015 03:11 — forked from KhalidFawzy/AutoHotKey Simple Title Animation
Little script to animate gui title in AutoHotKey
Title1 = Simple Title Animation
Title2 = Created by: Khalid Fawzy
SetTimer, AnimateTitle, 100
Gui +AlwaysOnTop
Gui +HWndGUI_ID
Gui, Show, Center h100 w400, .
Return