forked from lemon-juice/mouse-gestures-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
1216 lines (1215 loc) · 64.3 KB
/
options.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Options in Mouse Gestures Suite</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="javascripts/respond.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<div id="header">
<nav>
<ul class="sections">
<li><a href="./">Overview</a></li>
<li><a href="options.html">Main Options</a></li>
<li><a href="custom-functions.html">Custom Functions</a></li>
<li><a href="scripts.html">User Scripts</a></li>
</ul>
<ul class="downloads">
<li class="fork"><a href="https://github.com/lemon-juice/mouse-gestures-suite">View
On GitHub</a></li>
<li class="downloads"><a href="download.html">DOWNLOAD</a></li>
</ul>
</nav>
</div>
<!-- end header -->
<div class="wrapper">
<section>
<div id="title">
<h1>Mouse Gestures Suite</h1>
<hr> </div>
<h2>Main Options</h2>
<p>Table of contents:</p>
<ol>
<li><a href="#tab1">General Preferences</a></li>
<li><a href="#tab2">Gestures Customization</a></li>
<li><a href="#tab3">Advanced Prefs #1</a></li>
<li><a href="#tab4">Advanced Prefs #2</a></li>
<li><a href="#exp-imp">Exporting, importing Mouse Gesture preferences
& restoring defaults</a></li>
</ol>
<h2 id="tab1">General Preferences</h2>
<strong>Enable</strong> - enable/disable main features:<br>
<ul>
<li> <strong>Mouse gestures</strong> - performed by moving the mouse
with a button depressed allow you to quickly navigate through pages,
open/close tabs and windows and perform many other commands without
having to use toolbar buttons, menus or keyboard shortcuts. By
default they are used by keeping the right mouse button down and
drawing gesture shape in one of four directions: up, right, down or
left. After releasing the mouse button the gesture function is
executed. If you started drawing a gesture and want to cancel it
just stop moving the mouse and wait a moment before releasing the
mouse button (the timeout is configurable in General Preferences) –
the gesture trail will appear bleaker and the status bar information
will end with <em>[X]</em>, which are visual signs that timeout has
been reached and the gesture will be aborted if you do not continue
drawing. Mouse gestures are available in browser, messenger, page
source and mail compose windows. In some windows the range of
available actions is limited - see <a href="#tab2">Gestures
Customization</a> table for details.</li>
<li> <strong>Rocker gestures</strong> - invoked by pressing one mouse
button and then the other while keeping the first one pressed. By
default used to go back and forward in browsing history but can be
assigned to any gesture function. To customize these gestures, go to
the gesture customization tab, select the gesture (at the end of the
table) and click the <em>Edit function</em> button. Then clicking
on any row will assign the function of the clicked row to the
gesture. Rocker gestures are available in browser, messenger, page
source and mail compose windows. In some windows the range of
available actions is limited - see <a href="#tab2">Gestures
Customization</a> table for details.<br>
<br>
Functions which have a repetitive nature can be repeated without
releasing the trigger button. The <em>Allow repetition for actions
that load pages</em> advanced preference controls the
repeatability of functions that load pages.</li>
<li> <strong>Scroll wheel in tab bar</strong> - you can switch
between tabs by scrolling mouse wheel over the tab bar. This feature
is available in browser windows only.</li>
<li> <strong>Scroll wheel navigation</strong> - perform your favorite
actions by pressing a mouse button and scrolling mouse wheel at the
same time. This feature is complete in browser windows only. It also
works in messenger and page source windows only if <em>Perform
Gesture Actions</em> option is selected.</li>
<li> <strong>Middle button scrolling</strong> - auto scroll pages or
textareas by clicking the middle mouse button once (pressing and
releasing) and then control the scrolling speed by moving the mouse
or using arrow keys – this is similar to built-in autoscroll
available in SeaMonkey or Firefox but with some additions. <i>Grab
and Drag</i> options allow you to scroll by moving the mouse while
the middle button is depressed. This feature is available in
browser, mail and view message windows.</li>
<li> <strong>Link tooltip</strong> - see details about links as you
hover over them with your mouse. Useful especially for browsing
without the status bar like in full screen mode. This feature is
available in browser windows only.</li>
</ul>
<hr><strong>Mouse Gestures: Prefs</strong> - customize trail color for
mouse gestures.<br>
<hr><strong>Link Tooltip: Prefs</strong> - options for customizing link
tooltips, available only when link tooltips are enabled.<br>
<hr><strong>Scroll Wheel Navigation</strong> - options available when
scroll wheel navigation is enabled. To use scroll wheel navigation
scroll mouse wheel while keeping a mouse button pressed (the mouse
button is defined in Advanced Prefs #1). Available options:<br>
<ul>
<li><strong>Perform Gesture Actions</strong> - perform actions defined
in the Gestures Customization tab at the bottom of the list: Forward
& Backward Scrollwheel Gesture. Any action from the list can be
assigned by using the <em>Edit function</em> button.</li>
<li><strong>Navigate through History</strong> - go forward/back. A
list of pages in history will pop up and you will be able to choose
one. The current tab's name will appear in <span style="font-weight: bold;">bold</span>,
while the last visited tab will appear as <span style="text-decoration: underline;">underlined</span>.</li>
<li><strong>Navigate through Tabs</strong> - switch to next/previous
tab. A list of all open tabs will pop up and you will be able to
choose one to switch to. </li>
<li><strong>History / Tabs based on initial rotation</strong> - either
<em>Navigate through History</em> or <em>Navigate through Tabs</em>
depending on the initial scroll wheel rotation (clockwise or
anti-clockwise).</li>
</ul>
<hr><strong>Middle Button Scrolling</strong> - options available when
middle button scrolling is enabled:<br>
<ul>
<li><strong>Mouse Gestures autoscroll</strong> - to scroll the page
press and release the middle button and then move the mouse up or
down. Stop autoscroll by clicking middle or left button. Once
activated, autoscroll can also be controlled with arrow keys and
stopped by pressing any other key. Autoscroll refresh rate can be
configured in <em>Advanced Prefs #2</em>.</li>
<li><strong>Native autoscroll</strong> - same as above except it uses
the built-in mechanism in Seamonkey/Firefox instead of the one in
this extension. This may result in faster and smoother scrolling,
however keyboard navigation is not available. Choose the one that
works better for you.</li>
<li><strong>MG autoscroll + Grab and Drag</strong> - both Mouse
Gestures autoscroll and Grab and Drag are enabled. To use Grab and
Drag keep the middle button depressed and move the mouse up or down.</li>
<li><strong>Grab and Drag scrolling</strong> - only Grab and Drag is
enabled.</li>
</ul>
<h2 id="tab2">Gestures Customization</h2>
<span style="font-weight: bold;">Some gestures can be initiated on
browser tabs</span> and then they will apply to the target tab even if
it is not active. Here is the list of actions that can affect targeted
tabs via gestures:
<ul>
<li><em>Close current Tab</em></li>
<li><em>Close Document</em></li>
<li><em>Close all other Tabs</em></li>
<li><em>Close Tabs to the Right</em></li>
<li><em>History Back</em></li>
<li><em>History Forward</em></li>
<li><em>Reload Document</em></li>
<li><em>Reload Document from Network</em> </li>
<li><em>Stop Loading</em></li>
<li><em>Reload Frame</em> (applies to top frame when invoked on tab)</li>
<li><em>Open new Tab in Foreground</em>, <em>Open new Tab in
Background</em>, <em>Open blank Tab</em> – location sensitive:
new blank tab will be opened to the left or right of selected tab
depending on which half of tab the gesture was started on</li>
<li><em>Duplicate Tab</em></li>
<li><em>Duplicate Window</em></li>
<li><em>Detach Tab to New Window</em></li>
<li><em>Detach Next Tab and Double Stack Windows</em> </li>
<li><em>View Page Source</em></li>
<li><em>View Frame Source</em> (applies to top frame when invoked on
tab)</li>
<li><em>View Page Info</em></li>
<li><em>View Frame Info</em> (applies to top frame when invoked on
tab)</li>
<li><em>Save Page As...</em></li>
</ul>
<p><span style="font-weight: bold;">The Shift key</span> can be used
with some gestures that open a new tab or window to reverse the
opening in background versus foreground – just like you can use Shift
for the same purpose when middle-clicking on links. For example,
action <em>Open new Tab in Foreground</em> normally opens a new
foreground tab but if performed with Shift pressed it will open a tab
in background. Conversely, if an action opens a new tab/window in
foreground then the Shift key will change it to open in background.
Actions affected by the Shift key are marked in their descriptions
below. </p>
<p>Column '<strong>Available in</strong>' - shows in what window types
the function is available:</p>
<ul>
<li><strong>br</strong> – browser window</li>
<li><strong>src</strong> – view source window</li>
<li><strong>msg</strong> – (SeaMonkey only) messenger window: main
mail and message view windows (in the main mail window gestures work
only in the message page)</li>
<li><strong>mc</strong> – (SeaMonkey only) mail compose window</li>
</ul>
<table class="gestlist">
<thead>
<tr>
<th>Function</th>
<th>Available in</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>History Back</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Go to previous page in history. Equivalent to the browser back
button.<br>
</td>
</tr>
<tr>
<td>History Forward</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Go to next page in history. Equivalent to the browser forward
button. </td>
</tr>
<tr>
<td>Reload Document</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Reload page (same as Control+R or F5).<br>
</td>
</tr>
<tr>
<td>Reload Document from Network</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Force reload from network (same as Control+Shift+R).</td>
</tr>
<tr>
<td>Stop Loading</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Stop loading page.<br>
</td>
</tr>
<tr>
<td>Reload Frame</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Reload frame under gesture or reload page if no frame was
detected.</td>
</tr>
<tr>
<td>Reload All Tabs</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Open new Tab in Foreground</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Open new tab or open link in new tab if a link was found under
gesture. Behavior of this action is affected by advanced
preference <em>'Open new Tab/Window' opens link under performed
gesture</em>.<br>
<br>
If you initiate the gesture on a tab then a new tab will be
opened next to the selected tab (by default new blank tabs open
at the right end). If initiated on the right half of the tab the
new tab will open to the right. If initiated on the left half –
it will open to the left of the tab.<br>
<br>
<em class="shift-info">Shift key can be used to reverse
foreground<–>background opening of tab/window.</em></td>
</tr>
<tr>
<td>Open new Tab in Background</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Open new background tab or open link in new background tab if
a link was found under gesture. Behavior of this action is
affected by advanced preference <em>'Open new Tab/Window' opens
link under performed gesture</em>.<br>
<br>
If you initiate the gesture on a tab then a new tab will be
opened next to the selected tab.<br>
<br>
<em class="shift-info">Shift key can be used to reverse
foreground<–>background opening of tab/window.</em></td>
</tr>
<tr>
<td>Open blank Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Open blank tab.<br>
<br>
If you initiate the gesture on a tab then a new tab will be
opened next to the selected tab (by default new blank tabs open
at the right end). If initiated on the right half of the tab the
new tab will open to the right. If initiated on the left half –
it will open to the left of the tab.</td>
</tr>
<tr>
<td>Duplicate Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Open current page in new tab. In Mail/News: open selected
message in new tab.<br>
<br>
<em class="shift-info">Shift key can be used to reverse
foreground<–>background opening of tab/window.</em><br>
</td>
</tr>
<tr>
<td>Duplicate Window</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Open current page in new window. In Mail/News: open selected
message in new window.<br>
<br>
<em class="shift-info">Shift key can be used to reverse
foreground<–>background opening of tab/window.</em><br>
</td>
</tr>
<tr>
<td>Detach Tab to New Window</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Move tab from current window to a new window. Tab history,
scroll position and zoom level are preserved. Works only if two
or more tabs are open in current window.</td>
</tr>
<tr>
<td>Detach Next Tab and Double Stack Windows</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Detach next tab to new window and place both windows side by
side each covering half of the screen. Useful if you have two
pages open in two tabs and want to view them side by side. The
window with the current tab will be positioned on the left half
of the screen whereas the new window with the page from the next
tab (to the right) will be positioned on the right half of the
screen. If the rightmost tab is active then this action will
work for the active tab and for the one to the left.</td>
</tr>
<tr>
<td>Open new Window in Foreground</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Open new window or open link in new window if a link was found
under gesture. Behavior of this action is affected by advanced
preference <em>'Open new Tab/Window' opens link under performed
gesture</em>.<br>
<br>
<em class="shift-info">Shift key can be used to reverse
foreground<–>background opening of tab/window.</em></td>
</tr>
<tr>
<td>Open new Window in Background</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Open new background window or open link in new background
window if a link was found under gesture. Behavior of this
action is affected by advanced preference <em>'Open new
Tab/Window' opens link under performed gesture</em>.<br>
<br>
<em class="shift-info">Shift key can be used to reverse
foreground<–>background opening of tab/window.</em></td>
</tr>
<tr>
<td>Open Private Window</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Open new private window or open link in new private window if
a link was found under gesture. Behavior of this action is
affected by advanced preference <em>'Open new Tab/Window' opens
link under performed gesture</em>.<br>
<br>
<em class="shift-info">Shift key can be used to reverse
foreground<–>background opening of tab/window.</em></td>
</tr>
<tr>
<td>Double Stack in new Window</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Open link in new window: the opener window and the new window
are positioned side by side, each covering half of the screen.
If no link has been found under performed gesture then the new
window will be blank.</td>
</tr>
<tr>
<td>Previous Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Go to tab to the left. This action will wrap around if run on
the leftmost tab.</td>
</tr>
<tr>
<td>Next Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Go to tab to the right. This action will wrap around if run on
the rightmost tab.</td>
</tr>
<tr>
<td>Last Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Go to rightmost tab.</td>
</tr>
<tr>
<td>Return to Previous Selected Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Go to last focused tab.</td>
</tr>
<tr>
<td>Close current Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Close tab. If run on page with one tab it will leave the
browser window open with one blank tab.<br>
</td>
</tr>
<tr>
<td>Close all other Tabs</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Close Tabs to the Right</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Undo Close Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Close Document</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Close current tab. Close window if only one tab is open.</td>
</tr>
<tr>
<td>Open Selection in new Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>If a web address is selected then open it in new tab.
Otherwise search for selected text in new tab. If no text is
selected then the page of default search engine is opened.<br>
<br>
<em class="shift-info">Shift key can be used to reverse
foreground<–>background opening of tab/window (SeaMonkey
only).</em></td>
</tr>
<tr>
<td>Search for Selection in new Tab/Window</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Perform web search using default search engine in new tab or
window (depending on browser settings). If no text is selected
then the page of default search engine is opened.<br>
<br>
<em class="shift-info">Shift key can be used to reverse
foreground<–>background opening of tab/window</em><em class="shift-info"><em
class="shift-info"> (SeaMonkey only)</em>.</em></td>
</tr>
<tr>
<td>Open Links in Tabs</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>All links that you have drawn the gesture over will be opened
in new tabs.<br>
<br>
The default gesture for this action is +RU (=any gesture
sequence-Right-Up), which allows you to draw a long path in any
shape over the links you want to open and then finish the
gesture with Right-Up.</td>
</tr>
<tr>
<td>Open Links in Windows</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>All links that you have drawn the gesture over will be opened
in new windows. If you enable <em>'Open Links in Windows':
Single new window with tabs</em> option in advanced
preferences then this action will open one new window and load
all links in separate tabs.<br>
<br>
The default gesture for this action is +RUL (=any gesture
sequence-Right-Up-Left), which allows you to draw a long path in
any shape over the links you want to open and then finish the
gesture with Right-Up-Left.<br>
</td>
</tr>
<tr>
<td>Open Favorite Bookmark #1</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Load favorite bookmark with keyword <em>fav1</em>.</td>
</tr>
<tr>
<td>Open Favorite Bookmark #2</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Load favorite bookmark with keyword <em>fav2</em>.</td>
</tr>
<tr>
<td>Double Stack 2 Windows</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>This action allows you to view any two open windows side by
side. It takes the current window and previously focused window
and places them side by side each covering half of the screen.
Works for all kinds of windows (Browser, Source View, Mail &
Mail Compose) and their combinations.</td>
</tr>
<tr>
<td>Restore or Maximise Window</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Minimize Window</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Close Window</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Full Screen</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Opens browser in full screen mode. For non-browser windows it
does the same thing as <em>Restore or Maximise Window</em>. </td>
</tr>
<tr>
<td>Load Home Page</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Scroll to top of page</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Scroll to bottom of page</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Scroll Down</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Scroll down one page.<br>
</td>
</tr>
<tr>
<td>Scroll Up</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Scroll up one page.<br>
</td>
</tr>
<tr>
<td>Go Up to parent directory / domain</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Treat the URL of current page as a directory and change it so
that it points to the directory one level up. For example, page
at<br>
<ul>
<li><span style="text-decoration: underline;">http://animals.example.com/category/dogs</span></li>
</ul>
<span style="text-decoration: underline;"></span> will be
subsequently converted to the following URLs:<br>
<ul>
<li>http://<span style="text-decoration: underline;">animals</span>.example.com/category/</li>
<li>http://<span style="text-decoration: underline;">animals</span>.example.com/</li>
<li>http://example.com/</li>
</ul>
</td>
</tr>
<tr>
<td>Go to First Page in History</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Go to first page in history of current tab/window. </td>
</tr>
<tr>
<td>Increase Text Size</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Increase text size on the page. Size of graphics and other
elements will also be increased if your browser is set up to
zoom full pages.<br>
</td>
</tr>
<tr>
<td>Decrease Text Size</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Decrease text size on the page. Size of graphics and other
elements will also be decreased if your browser is set up to
zoom full pages. </td>
</tr>
<tr>
<td>Reset Text Size</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Double Image Size</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Increase image size (will not work on background images).<br>
</td>
</tr>
<tr>
<td>Halve Image Size</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Decrease image size (will not work on background images). </td>
</tr>
<tr>
<td>Reset Image Size</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Save Image As...</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Save image as file (asks for location on disk).<br>
</td>
</tr>
<tr>
<td>Save Image</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Save image as file directly to download folder without
prompting for location. For this to work as expected make sure
you set up a default location for downloads in browser
preferences.</td>
</tr>
<tr>
<td>Zoom In on Image/Text</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>If performed over image zoom in the image. Otherwise zoom in
text on page (along with graphics and other elements depending
on your browser settings).<br>
</td>
</tr>
<tr>
<td>Zoom Out on Image/Text</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>If performed over image zoom out the image. Otherwise zoom out
text on page (along with graphics and other elements depending
on your browser settings). </td>
</tr>
<tr>
<td>Reset Image/Text Size</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>If performed over image reset the image size. Otherwise reset
text size on page (along with graphics and other elements
depending on your browser settings). </td>
</tr>
<tr>
<td>Open Image in new Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Open image in new tab. This works for background images, too.<br>
</td>
</tr>
<tr>
<td>Open Image in new Window</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Open image in new window. This works for background images,
too. </td>
</tr>
<tr>
<td>Hide Object</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Hide any object (html element) on page.<br>
</td>
</tr>
<tr>
<td>Undo Hide Object</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Undo hide last object. This will also work for multiple hidden
objects one by one.<br>
</td>
</tr>
<tr>
<td>Hide Flash Animations</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Hide all flash objects on page. Later you can click each one
to show it again.<br>
</td>
</tr>
<tr>
<td>View Page Source</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>Open Page Source.<br>
</td>
</tr>
<tr>
<td>View Frame Source</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>View frame source. If there is no frame under gesture then
view page source.<br>
</td>
</tr>
<tr>
<td>View Cookies</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Show cookies on current site.<br>
</td>
</tr>
<tr>
<td>Delete Cookies from this site</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Delete cookies on current site.</td>
</tr>
<tr>
<td>View Page Info</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Open Page Info window.<br>
</td>
</tr>
<tr>
<td>View Frame Info</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>View frame info. If there is no frame under gesture then view
page info. </td>
</tr>
<tr>
<td>View Javascript Console</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Show error console. In Firefox – show web console.<br>
</td>
</tr>
<tr>
<td>Add Bookmark</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Bookmark current page.<br>
</td>
</tr>
<tr>
<td>Validate this Document</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Validate page online at validator.w3.org.<br>
</td>
</tr>
<tr>
<td>Translate this document</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Translate page at translate.google.com.<br>
</td>
</tr>
<tr>
<td>Meta Info</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>View meta tags in page.<br>
</td>
</tr>
<tr>
<td>Open Bookmarks Manager</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Open Download Manager</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Show/Hide Sidebar/Folder Pane</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="messenger">msg </span></td>
<td>SeaMonkey: show or hide sidebar. In Mail/News: show or hide
Folder Pane.<br>
Firefox: show or hide bookmarks sidebar.<br>
</td>
</tr>
<tr>
<td>Show/Hide Status Bar</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td>Show or hide status bar. In Firefox this action will work for
status bar or add-on bar only if you have <em>Status-4-Evar</em>
or <em>Classic Theme Restorer</em> extension installed.<br>
</td>
</tr>
<tr>
<td>Copy URL to Clipboard</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Open URL from Clipboard in new Tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Increment digit in URL</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Increment number in URL (for example, page number). If there
are multiple numbers you will be asked to choose which number to
increment.<br>
</td>
</tr>
<tr>
<td>Decrement digit in URL</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Decrement number in URL. If there are multiple numbers you
will be asked to choose which number to decrement.</td>
</tr>
<tr>
<td>Clear digit flipper</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Forget your choice about which number to increment/decrement
in URL. Next time you will be asked again which number to
increment/decrement.<br>
</td>
</tr>
<tr>
<td>Save Links to Disk</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td>Save all links under gesture to disk.<br>
</td>
</tr>
<tr>
<td>Print Preview</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Print</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Save Page As...</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Show my gestures in new tab</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Show your gesture definitions in new tab.<br>
</td>
</tr>
<tr>
<td>Open Mouse Gestures Suite Options</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span><span class="source">src </span><span class="messenger">msg
</span><span class="mailcompose">mc </span></td>
<td> <br>
</td>
</tr>
<tr>
<td>Follow Next Link</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Link that contains one of the strings defined in <em>Advanced
Prefs #1</em> will be followed. The <em>next</em> strings are
delimited with |. Useful for navigating to the next page on a
site.<br>
</td>
</tr>
<tr>
<td>Follow Previous Link</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>Link that contains one of the strings defined in <em>Advanced
Prefs #1</em> will be followed. The <em>previous</em> strings
are delimited with |. Useful for navigating to the previous page
on a site. </td>
</tr>
<tr>
<td>Back to Last Page of Previous Domain</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br
</span></td>
<td>This will go back in history of current tab to the last page
of the previous site you were viewing. </td>
</tr>
<tr>
<td>Back to First Page of Current Domain</td>
<td style="white-space: nowrap;" class="wintypes"> <span class="browser">br