]> git.donarmstrong.com Git - kiibohd-kll.git/blob - layouts/mouseTest.kll
Adding a few more mouse tests
[kiibohd-kll.git] / layouts / mouseTest.kll
1 Name = mouseTest;
2 Version = 0.2;
3 Author = "HaaTa (Jacob Alexander) 2016";
4 KLL = 0.3d;
5
6 # Modified Date
7 Date = 2016-03-21;
8
9 # mouseOut
10 # Arg1, button, 1-16
11 # Arg2, mouse x relative axis -32 767 to 32 767
12 # Arg3, mouse y relative axis -32 767 to 32 767
13
14 U"1" : mouseOut( 1, 0, 0 );
15 U"2" : mouseOut( 2, 0, 0 );
16 U"3" : mouseOut( 3, 0, 0 );
17 U"4" : mouseOut( 4, 0, 0 );
18 U"5" : mouseOut( 5, 0, 0 );
19 U"6" : mouseOut( 6, 0, 0 );
20 U"7" : mouseOut( 7, 0, 0 );
21 U"8" : mouseOut( 8, 0, 0 );
22 U"Z" : mouseOut( 9, 0, 0 );
23 U"X" : mouseOut( 10, 0, 0 );
24 U"C" : mouseOut( 11, 0, 0 );
25 U"V" : mouseOut( 12, 0, 0 );
26 U"B" : mouseOut( 13, 0, 0 );
27 U"N" : mouseOut( 14, 0, 0 );
28 U"M" : mouseOut( 15, 0, 0 );
29 U"Comma" : mouseOut( 16, 0, 0 );
30
31 U"Up" : mouseOut( 0, 0, 1 );
32 U"Down" : mouseOut( 0, 0, -1 );
33 U"Left" : mouseOut( 0, -1, 0 );
34 U"Right" : mouseOut( 0, 1, 0 );
35
36 U"W" : mouseOut( 0, 0, 5 );
37 U"S" : mouseOut( 0, 0, -5 );
38 U"A" : mouseOut( 0, -5, 0 );
39 U"D" : mouseOut( 0, 5, 0 );
40