726
Living Room / Re: Techno kittens!
« Last post by CleverCat on January 03, 2009, 04:56 AM »Cute! 

#SingleInstance Force
#Persistent
#NoEnv
SetTimer, Timer, 2000
Timer:
OldValue := OutputVar
RegRead, OutputVar, HKEY_CURRENT_USER, Control Panel\Accessibility\StickyKeys, Flags
IfNotEqual, OldValue, %OutputVar%
If OutputVar <> 511
{
MsgBox, 68, Sticky Keys, The Sticky Keys are turned off. Would you like to turn them on?
IfMsgBox Yes
RegWrite, REG_SZ, HKEY_CURRENT_USER, Control Panel\Accessibility\StickyKeys, Flags, 511
}
Return