window of the world 6 has not yet joined the custom function of mouse gestures, in order to facilitate the use of everyone, in addition to the use of the default mouse gestures, you can also modify to do their own custom design, first of all to save their own data, backup, to prevent the operation of errors caused by data loss.
1. First off tw6, this is very important!!
2. Find preferences to open with Notepad (path: Install directory Theworld6user datadefault). It is best to use a special code editor to open, such as notepad++, Notepad, but not as convenient as notepad++.
3. Write gesture code in the second line. Preferences file default is not any gesture code, if not modified in the second line to write code saved, it will be typesetting.
Code format:
"Kmousegestureprofile": {
"Actions": commands,
"Actions": commands,
...
"Actions": command
},
4. If you do not want to use a default gesture, it is best to overwrite, the command changed to 0.
5. Command code and its significance
0-Invalid action
1-PAGE Up
2-PAGE Down
3-Scroll Left
4-Scroll to the right
5-Scroll to the top of the page
6-Scroll to the bottom of the page
7-Back
8-forward
9-Reload (refresh)
10-Open new tab page
11-Open Homepage
12-Close the label page
13-Close other tabs
14-Restore the tab page just closed
15-Analog Keyboard left button pressed
16-Analog Keyboard right button pressed
17-Previous label
18-Last Label
19-Full Screen switching
20-Stop
21-Minimize
6. Gesture action and its significance
BA: Hold right button press left button
BC: Hold right button and press middle
BCD: Press and hold right button wheel down
BCU: Press and hold right button wheel up
UDLR: Up or down
7. I use the gesture myself. Left and right default, unmodified; overwrite unused gestures
"Kmousegestureprofile": {
"D": 6,
"DR": 0,
"DU": 9,
"LD": 0,
"LR": 0,
"RD": 0,
"RL": 0,
"RU": 0,
"U": 5,
"UD": 9,
"UL": 0,
"UR": 0
},