Last active
October 12, 2017 01:19
-
-
Save Ovyerus/1dc107992843aa8c232c53cf11576046 to your computer and use it in GitHub Desktop.
mathfactspro numbers to use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CoordMode, Mouse, Screen | |
=:: | |
MouseGetPos, X, Y | |
MsgBox % "X Coord: " . X . " Y Coord: " . Y | |
clipboard = [%X%,%Y%] | |
Return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SetTitleMatchMode, RegEx | |
CoordMode, Mouse, Screen | |
Coords := [[700,566],[612,511],[700,501],[781,510],[602,451],[692,455],[787,455],[606,402],[705,403],[780,397]] | |
ExtraButtons := [[913,289],[691,286],[919,563]] | |
SpecialDivision := [[614,568],[779,561]] | |
#IfWinActive Math ?Facts ?Pro.*(Edge|Google Chrome) | |
0:: | |
X := Coords[1][1] | |
Y := Coords[1][2] | |
Click %X% %Y% | |
Return | |
1:: | |
X := Coords[2][1] | |
Y := Coords[2][2] | |
Click %X% %Y% | |
Return | |
2:: | |
X := Coords[3][1] | |
Y := Coords[3][2] | |
Click %X% %Y% | |
Return | |
3:: | |
X := Coords[4][1] | |
Y := Coords[4][2] | |
Click %X% %Y% | |
Return | |
4:: | |
X := Coords[5][1] | |
Y := Coords[5][2] | |
Click %X% %Y% | |
Return | |
5:: | |
X := Coords[6][1] | |
Y := Coords[6][2] | |
Click %X% %Y% | |
Return | |
6:: | |
X := Coords[7][1] | |
Y := Coords[7][2] | |
Click %X% %Y% | |
Return | |
7:: | |
X := Coords[8][1] | |
Y := Coords[8][2] | |
Click %X% %Y% | |
Return | |
8:: | |
X := Coords[9][1] | |
Y := Coords[9][2] | |
Click %X% %Y% | |
Return | |
9:: | |
X := Coords[10][1] | |
Y := Coords[10][2] | |
Click %X% %Y% | |
Return | |
-:: | |
X := SpecialDivision[1][1] | |
Y := SpecialDivision[1][2] | |
Click %X% %Y% | |
Return | |
=:: | |
X := SpecialDivision[2][1] | |
Y := SpecialDivision[2][2] | |
Click %X% %Y% | |
Return | |
n:: | |
X := ExtraButtons[1][1] | |
Y := ExtraButtons[1][2] | |
Click %X% %Y% | |
Return | |
r:: | |
X := ExtraButtons[2][1] | |
Y := ExtraButtons[2][2] | |
Click %X% %Y% | |
Return | |
b:: | |
X := ExtraButtons[3][1] | |
Y := ExtraButtons[3][2] | |
Click %X% %Y% | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment