09/23 - Follow You Friday!

Status
Not open for further replies.

Jharkan

Internets EXPERT
Contributor
Joined
Jul 9, 2016
Messages
11,873
Reaction score
20,418
Points
1,288
Location
Earth
Gender
Male
I just came up with an AHK for the current A9s
not as useful as the one I made for colors, but oh well

first, draw the bounding box (if applicable)
push numpad0 if nothing matches (must click workspace first)
push numpad 1 if there is one object, then it's set to select nonwatermarked solid background - change when necessary
push numpad 2 if there's more than 1
push numpad 8 if it didn't load



Code:
numpad0::
send {tab}{space}
send {tab}
return

numpad1::
send {tab}{down} 
send {tab}{right}
send {tab}{space}
send {tab}{right}
send {tab}{down}
send {tab}
return

numpad2::
send {tab}{down 2} 
send {tab}{right}
send {tab}{space}
send {tab}{right}
send {tab}{down}
send {tab}
return

numpad8::
send {tab}{down 3}
send {tab}
return
 
Last edited:

Nytmair

Well-Known Member
Contributor
Joined
Jul 6, 2016
Messages
2,473
Reaction score
3,738
Points
588
Gender
Male
I just came up with an AHK for the current A9s
not as useful as the one I made for colors, but oh well

first, draw the bounding box (if applicable)
push numpad0 if nothing matches
push numpad 1 if there is one object, then it's set to select nonwatermarked solid background - change when necessary
push numpad 2 if there's more than 1
push numpad 8 if it didn't load



Code:
numpad0::
send {tab}{space}
send {tab}
return

numpad1::
send {tab}{down} 
send {tab}{right}
send {tab}{space}
send {tab}{right}
send {tab}{down}
send {tab}
return

numpad2::
send {tab}{down 2} 
send {tab}{right}
send {tab}{space}
send {tab}{right}
send {tab}{down}
send {tab}
return

numpad8::
send {tab}{down 3}
send {tab}
return
Thanks dude!!
 

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

Peachy

777
Banned
Pollster
Crowd Pleaser
Champion
Joined
Jan 25, 2016
Messages
36,663
Reaction score
88,761
Points
2,089
Age
35

T. Leela

Oh Lord...
Contributor
Joined
May 12, 2016
Messages
11,050
Reaction score
14,046
Points
1,388
Location
Colorado
Gender
Female
I just came up with an AHK for the current A9s
not as useful as the one I made for colors, but oh well

first, draw the bounding box (if applicable)
push numpad0 if nothing matches (must click workspace first)
push numpad 1 if there is one object, then it's set to select nonwatermarked solid background - change when necessary
push numpad 2 if there's more than 1
push numpad 8 if it didn't load



Code:
numpad0::
send {tab}{space}
send {tab}
return

numpad1::
send {tab}{down}
send {tab}{right}
send {tab}{space}
send {tab}{right}
send {tab}{down}
send {tab}
return

numpad2::
send {tab}{down 2}
send {tab}{right}
send {tab}{space}
send {tab}{right}
send {tab}{down}
send {tab}
return

numpad8::
send {tab}{down 3}
send {tab}
return
oh....looks like mine except mine are three separate ones. i couldn't get it to work all together (didn't bother with the option when nothing loads) though i thought i did it like this. oh well ill mess with it next time there is a slight change that completely screws it all up.
 
Status
Not open for further replies.