05/20 - Famous Canines Friday!

Status
Not open for further replies.

Pleco

Friendly Neighborhood Rat
Contributor
Crowd Pleaser
Joined
Jan 23, 2016
Messages
19,190
Reaction score
76,218
Points
1,588
Age
38
Gender
Male

Barbwire

Averagely-known member
Contributor
Joined
Jan 12, 2016
Messages
4,774
Reaction score
8,287
Points
838
ahk script (Got the script from someone here yesterday & changed key. You press numberpad 1 to select all to no. You can change that though)

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 {tab}
Send {tab}
Send {tab}
Send {tab} ; gets to first question


Send {space} ;marks 1 no

Send {tab} ;marks 2 no
Send {tab}
Send {space}

Send {tab} ;marks 3 no
Send {tab}
Send {space}

Send {tab} ;marks 4 no
Send {tab}
Send {space}

Send {tab} ;marks 5 no
Send {tab}
Send {space}

Send {tab} ;marks 6 no
Send {tab}
Send {space}

Send {tab} ;marks 7 no
Send {tab}
Send {space}

Send {tab} ;marks 8 no
Send {tab}
Send {space}
Kathryn @Kathryn this was posted earlier, hope it helps
 
Status
Not open for further replies.