08/24 - Working Watamote Wednesday!

Status
Not open for further replies.

LightningLord

You think that's a Schwinn.
Contributor
Joined
Jan 12, 2016
Messages
2,400
Reaction score
4,040
Points
538
Age
33
Gender
Male
Um...one of my john moons doesn't have the question. Just the job description. wtf.
 

Kadauchi

Well-Known Member
Master Pleaser
Crowd Pleaser
Joined
Jan 12, 2016
Messages
7,098
Reaction score
21,951
Points
1,263

Ashley88

Member
Joined
Jan 24, 2016
Messages
321
Reaction score
306
Points
263
Age
35
Gender
Female
Wow, I love that show. That's so cool.
I do too! Apparently the directors had to make a post online telling people not go to "their" house to take pictures because people were getting robbed. Oh Chicago..
 
  • Like
Reactions: Turkster

ecko

Well-Known Member
Contributor
Joined
Feb 2, 2016
Messages
3,764
Reaction score
6,813
Points
838
Age
42
Gender
Male
AHK for these Moon's
Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

$Numpad1::
Send {Tab}
Send {Space}
Sleep, 100
;Send {Enter}  ; Remove the ";" in front of the word Send to submit 
Sleep, 100
;Send ^{Tab}  ; Remove the ";" in front of the word Send to switch tabs after submitting 
return

$Numpad2::
Send {Tab 2}
Send {Space}
Sleep, 100
;Send {Enter}   ; Remove the ";" in front of the word Send to submit 
Sleep, 100
;Send ^{Tab}    ; Remove the ";" in front of the word Send to switch tabs after submitting
return




End:: ;Suspend
Suspend
    if (A_IsSuspended)
        Traytip ,,Hotkeys have been suspended!,5,0
    else
        Traytip ,,All hotkeys are now active!,5,0
return
 
Last edited:
  • Like
Reactions: GenericPear
Status
Not open for further replies.