Had a typo in the _Bind Method call

Code: Select all
This._Bind( SomeHwnd , "Some Method" )
Code: Select all
NumPad1::
Saved_Y_Position := 150
MouseGetPos, Current_X_Position
MouseMove, Current_X_Position , Saved_Y_Position
return
Code: Select all
x := 8 ; binary 00001000
y := 7 ; binary 00000111
Msgbox, % x ^= y ; binary 00001111 ; Decimal 15
x := 3 ; binary 00000011
y := 1 ; binary 00000001
Msgbox, % x ^= y ; binary 00000010 ; Decimal 2
Code: Select all
Numpad1::
VariableName := Clipboard
return
Much nicer than my playing peak-a-boo with one of the windows to get the two handles lol.