summaryrefslogtreecommitdiff
path: root/helpcontent2/source/text/shared/04/01010000.xhp
blob: 5f7dfe45ceedc87f65e0b6c3835872548f320931 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
<?xml version="1.0" encoding="UTF-8"?>
<helpdocument version="1.0">
	
<!--
***********************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 * 
 * Copyright 2008 by Sun Microsystems, Inc.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * $RCSfile: 01010000.xhp,v $
 * $Revision: 1.12.4.2 $
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************
 -->
 
	
<meta>
<topic id="textshared0401010000xml" indexer="include">
<title id="tit" xml-lang="en-US">General Shortcut Keys in $[officename]</title>
<filename>/text/shared/04/01010000.xhp</filename>
</topic>
</meta>
<body>
<section id="allgemeine">
<bookmark xml-lang="en-US" branch="index" id="bm_id3149991"><bookmark_value>keyboard;general commands</bookmark_value>
<bookmark_value>shortcut keys;general</bookmark_value>
<bookmark_value>text input fields</bookmark_value>
<bookmark_value>AutoComplete function in text and list boxes</bookmark_value>
<bookmark_value>macros; interrupting</bookmark_value>
</bookmark>
<paragraph role="heading" id="hd_id3149991" xml-lang="en-US" level="1" l10n="U" oldref="1"><variable id="common_keys"><link href="text/shared/04/01010000.xhp" name="General Shortcut Keys in $[officename]">General Shortcut Keys in $[officename]</link>
</variable></paragraph>
</section>
<embed href="text/shared/00/00000099.xhp#keys"/>
<paragraph role="heading" id="hd_id3150702" xml-lang="en-US" level="2" l10n="U" oldref="3">Using Shortcut Keys</paragraph>
<paragraph role="paragraph" id="par_id3151299" xml-lang="en-US" l10n="U" oldref="4">A great deal of your application's functionality can be called up by using shortcut keys. For example, the <switchinline select="sys"><caseinline select="MAC">Command+O
</caseinline><defaultinline>Ctrl+O</defaultinline></switchinline> shortcut keys are shown next to the <emph>Open</emph> entry in the <emph>File</emph> menu. If you want to access this function by using the shortcut keys, press and hold down <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and then press the O key. Release both keys after the dialog appears.</paragraph>
<paragraph role="paragraph" id="par_id3153894" xml-lang="en-US" l10n="U" oldref="5">When operating your application, you can choose between using the mouse or the keyboard for almost all of the operations available.</paragraph>
<paragraph role="heading" id="hd_id3154186" xml-lang="en-US" level="2" l10n="U" oldref="6"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>Calling Menus With Shortcut Keys</defaultinline></switchinline></paragraph>
<paragraph role="paragraph" id="par_id3152425" xml-lang="en-US" l10n="U" oldref="7"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>Some of the characters shown on the menu bar are underlined. You can access these menus directly by pressing the underlined character together with the ALT key. Once the menu is opened, you will again find underlined characters. You can access these menu items directly by simply pressing the underlined character key.</defaultinline></switchinline></paragraph>
<paragraph role="heading" id="hd_id3156410" xml-lang="en-US" level="2" l10n="U" oldref="9">Using Shortcut Keys to Control Dialogs</paragraph>
<paragraph role="paragraph" id="par_id3154288" xml-lang="en-US" l10n="U" oldref="10">There is always one element highlighted in any given dialog - usually shown by a broken frame. This element, which can be either a button, an option field, an entry in a list box or a check box, is said to have the focus on it. If the focal point is a button, pressing Enter runs it as if you had clicked it. A check box is toggled by pressing the spacebar. If an option field has the focus, use the arrow keys to change the activated option field in that area. Use the Tab key to go from one element or area to the next one, use Shift + Tab to go in the reverse direction.</paragraph>
<paragraph role="paragraph" id="par_id3149177" xml-lang="en-US" l10n="U" oldref="11">Pressing ESC closes the dialog without saving changes. <switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>If you place the focus on a button, not only will you see the dotted line framing the name of the button, but also a thicker shadow under the button selected. This indicates that if you exit the dialog by pressing the Enter key, it is the equivalent of pressing that button itself.</defaultinline></switchinline></paragraph>
<paragraph role="heading" id="hd_id3147209" xml-lang="en-US" level="2" l10n="U" oldref="105">Shortcut Keys for Mouse Actions</paragraph>
<paragraph role="paragraph" id="par_id3154749" xml-lang="en-US" l10n="U" oldref="106">If you are using drag-and-drop, selecting with the mouse or clicking objects and names, you can use the keys Shift, <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and occasionally <switchinline select="sys"><caseinline select="MAC">Option
</caseinline><defaultinline>Alt</defaultinline></switchinline> to access additional functionality. The modified functions available when holding down keys during drag-and-drop are indicated by the mouse pointer changing form. When selecting files or other objects, the modifier keys can extend the selection - the functions are explained where applicable. <switchinline select="sys"><caseinline select="UNIX"><embedvar href="text/shared/00/00000099.xhp#winmanager"/>
</caseinline></switchinline></paragraph>
<paragraph role="heading" id="hd_id3154046" xml-lang="en-US" level="2" l10n="U" oldref="127">Practical Text Input Fields</paragraph>
<list type="ordered">
<listitem>
<paragraph role="listitem" id="par_id3145673" xml-lang="en-US" l10n="U" oldref="129">You can open a context menu, which contains some of the most often-used commands.</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3150085" xml-lang="en-US" l10n="U" oldref="130">Use the shortcut keys Shift+<switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S to open the <emph>Special Characters</emph> dialog to insert one or more special characters.</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3153088" xml-lang="en-US" l10n="U" oldref="131">Use <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A to select the entire text. Use the right or left arrow key to remove the selection.</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3149514" xml-lang="en-US" l10n="U" oldref="132">Double-click a word to select it.</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3149785" xml-lang="en-US" l10n="CHG" oldref="133">A triple-click in a text input field selects the entire field. A triple-click in a text document selects the current sentence.</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3150976" xml-lang="en-US" l10n="U" oldref="134">Use <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Del to delete everything from the cursor position to the end of the word.</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3147264" xml-lang="en-US" l10n="U" oldref="135">By using <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and right or left arrow key, the cursor will jump from word to word; if you also hold down the Shift key, one word after the other is selected.</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3154346" xml-lang="en-US" l10n="U" oldref="136">INSRT is used to switch between the insert mode and the overwrite mode and back again.</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3148757" xml-lang="en-US" l10n="U" oldref="137">Drag-and-drop can be used within and outside of a text box.</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3150358" xml-lang="en-US" l10n="U" oldref="138">The <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z shortcut keys are used to undo modifications one step at a time; the text will then have the status it had before the first change.</paragraph>
</listitem>
</list>
<section id="autocompurl">
<list type="ordered">
<listitem>
<paragraph role="listitem" id="par_id3153968" xml-lang="en-US" l10n="CHG" oldref="139"> $[officename] has an AutoComplete function which activates itself in some text and list boxes. For example, enter <switchinline select="sys"><caseinline select="WIN">c:\a 
</caseinline><defaultinline>~/a</defaultinline></switchinline> into the URL field and the AutoComplete function displays the first file or first directory found <switchinline select="sys"><caseinline select="WIN">on the C: drive 
</caseinline><defaultinline>in your home folder</defaultinline></switchinline> that starts with the letter "a".</paragraph>
</listitem>
<listitem>
<paragraph role="listitem" id="par_id3144760" xml-lang="en-US" l10n="CHG" oldref="140">Use the down arrow key to scroll through the other files and directories. Use the right arrow key to also display an existing subdirectory in the URL field. Quick AutoComplete is available if you press the End key after entering part of the URL. Once you find the document or directory you want, press Enter.</paragraph>
</listitem>
</list>
</section>
<paragraph role="heading" id="hd_id3150767" xml-lang="en-US" level="2" l10n="U" oldref="163">Interrupting Macros</paragraph>
<paragraph role="paragraph" id="par_id3159150" xml-lang="en-US" l10n="U" oldref="164">If you want to terminate a macro that is currently running, press Shift+ <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q.</paragraph>
<paragraph role="heading" id="hd_id3154123" xml-lang="en-US" level="2" l10n="U" oldref="12">List of General Shortcut Keys in $[officename]</paragraph>
<paragraph role="paragraph" id="par_id3145421" xml-lang="en-US" l10n="U" oldref="13">The shortcut keys are shown on the right hand side of the menu lists next to the corresponding menu command. <switchinline select="sys"><caseinline select="MAC">(Not all of the mentioned keys for controlling dialogs are available on the Macintosh.) 
</caseinline></switchinline></paragraph>
<table id="tbl_id3555101">
<tablerow>
<tablecell>
<paragraph role="tablehead" id="hd_id3153367" xml-lang="en-US" l10n="U" oldref="14">Shortcut Keys</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablehead" id="par_id3156060" xml-lang="en-US" l10n="U" oldref="15">
<emph>Effect</emph>
</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149260" xml-lang="en-US" l10n="U" oldref="16">Enter key</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153727" xml-lang="en-US" l10n="U" oldref="17">Activates the focused button in a dialog</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3153142" xml-lang="en-US" l10n="U" oldref="18">Esc</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3155412" xml-lang="en-US" l10n="U" oldref="19">Terminates the action or dialog. If in $[officename] Help: goes up one level.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3151118" xml-lang="en-US" l10n="U" oldref="20">Spacebar</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3147435" xml-lang="en-US" l10n="U" oldref="21">Toggles the focused check box in a dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3152791" xml-lang="en-US" l10n="U" oldref="22">Arrow keys</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3151113" xml-lang="en-US" l10n="U" oldref="23">Changes the active control field in an option section of a dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3154188" xml-lang="en-US" l10n="U" oldref="24">Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3146975" xml-lang="en-US" l10n="U" oldref="25">Advances focus to the next section or element in a dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3153363" xml-lang="en-US" l10n="U" oldref="26">Shift + Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149665" xml-lang="en-US" l10n="U" oldref="27">Moves the focus to the previous section or element in a dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3147317" xml-lang="en-US" l10n="U" oldref="153"><switchinline select="sys"><caseinline select="MAC">Option
</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153224" xml-lang="en-US" l10n="U" oldref="154">Opens the list of the control field currently selected in a dialog. These shortcut keys apply not only to combo boxes but also to icon buttons with pop-up menus. Close an opened list by pressing the Escape key.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3159348" xml-lang="en-US" l10n="U" oldref="172">Del</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3144765" xml-lang="en-US" l10n="U" oldref="171">Deletes the selected item(s) into the recycle bin.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149379" xml-lang="en-US" l10n="U" oldref="174">Shift+Del</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149412" xml-lang="en-US" l10n="U" oldref="173">Deletes the selected item(s) without putting them in the recycle bin.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3154792" xml-lang="en-US" l10n="U" oldref="176">Backspace</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149582" xml-lang="en-US" l10n="U" oldref="175">When a folder is shown: goes up one level (goes back)</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="par_idN10BC0" xml-lang="en-US" l10n="NEW"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+M</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_idN10BE8" xml-lang="en-US" l10n="NEW">Removes direct formatting from selected text or objects (as in <emph>Format - Default Formatting</emph>)</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149488" xml-lang="en-US" l10n="U" oldref="141"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149912" xml-lang="en-US" l10n="CHG" oldref="142">When positioned at the start of a header, a tab is inserted.<comment>UFI: fixes #i21687#</comment></paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3148573" xml-lang="en-US" l10n="U" oldref="289">Enter (if an OLE object is selected)</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3154162" xml-lang="en-US" l10n="U" oldref="288">Activates the selected OLE object.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3146990" xml-lang="en-US" l10n="U" oldref="290">Enter (if a drawing object or text object is selected)</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153839" xml-lang="en-US" l10n="U" oldref="291">Activates text input mode.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3156437" xml-lang="en-US" l10n="U" oldref="28"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149123" xml-lang="en-US" l10n="U" oldref="29">Opens a document.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3155064" xml-lang="en-US" l10n="U" oldref="30"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150749" xml-lang="en-US" l10n="U" oldref="31">Saves the current document.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3156377" xml-lang="en-US" l10n="U" oldref="32"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3155764" xml-lang="en-US" l10n="U" oldref="33">Creates a new document.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3151357" xml-lang="en-US" l10n="U" oldref="178">Shift+<switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3148408" xml-lang="en-US" l10n="U" oldref="177">Opens <emph>Templates and Documents</emph> dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3150043" xml-lang="en-US" l10n="U" oldref="34"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3147100" xml-lang="en-US" l10n="U" oldref="35">Prints document.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149258" xml-lang="en-US" l10n="U" oldref="113"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153966" xml-lang="en-US" l10n="U" oldref="114">Exits application.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3153538" xml-lang="en-US" l10n="U" oldref="36"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3166450" xml-lang="en-US" l10n="U" oldref="37">Cuts out the selected elements.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3155904" xml-lang="en-US" l10n="U" oldref="38"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3148537" xml-lang="en-US" l10n="U" oldref="39">Copies the selected items.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3156318" xml-lang="en-US" l10n="U" oldref="40"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3147005" xml-lang="en-US" l10n="U" oldref="41">Pastes from the clipboard.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="par_idN10F47" xml-lang="en-US" l10n="NEW"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+V</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_idN10F4B" xml-lang="en-US" l10n="NEW">Opens the <emph>Paste Special</emph> dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3153789" xml-lang="en-US" l10n="U" oldref="42"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3155581" xml-lang="en-US" l10n="U" oldref="43">Selects all.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149738" xml-lang="en-US" l10n="U" oldref="44"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149816" xml-lang="en-US" l10n="U" oldref="45">Undoes last action.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3147095" xml-lang="en-US" l10n="U" oldref="351"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Y</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150345" xml-lang="en-US" l10n="U" oldref="352">Redoes last action.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="par_id7297280" xml-lang="en-US" l10n="NEW"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Y</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id8709677" xml-lang="en-US" l10n="NEW">Repeats last command.<comment>[framework-features] new/SRC680_m221 : Shortcut for "Repeat"</comment></paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3158414" xml-lang="en-US" l10n="U" oldref="165"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150090" xml-lang="en-US" l10n="U" oldref="166">Calls the <emph>Find &amp; Replace</emph> dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3148800" xml-lang="en-US" l10n="U" oldref="167"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149527" xml-lang="en-US" l10n="U" oldref="168">Searches for the last entered search term.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3154198" xml-lang="en-US" l10n="U" oldref="48"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>Ctrl+Shift+J</defaultinline></switchinline></paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150567" xml-lang="en-US" l10n="CHG" oldref="49"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>Toggles the view between fullscreen mode and normal mode in Writer or Calc</defaultinline></switchinline></paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3151049" xml-lang="en-US" l10n="U" oldref="50"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+R</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3148462" xml-lang="en-US" l10n="U" oldref="51">Redraws the document view.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149035" xml-lang="en-US" l10n="U" oldref="349">Shift+<switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+I</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150665" xml-lang="en-US" l10n="CHG" oldref="350">Enable or disable the selection cursor in read-only text.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3145588" xml-lang="en-US" l10n="U" oldref="90"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+I</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3148753" xml-lang="en-US" l10n="U" oldref="91">The <emph>Italic</emph> attribute is applied to the selected area. If the cursor is positioned in a word, this word is also marked in italic.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3166428" xml-lang="en-US" l10n="U" oldref="92"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+B</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150490" xml-lang="en-US" l10n="U" oldref="93">The <emph>Bold</emph> attribute is applied to the selected area. If the cursor is positioned in a word, this word is also put in bold.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3154815" xml-lang="en-US" l10n="U" oldref="94"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+U</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153228" xml-lang="en-US" l10n="U" oldref="95">The <emph>Underlined</emph> attribute is applied to the selected area. If the cursor is positioned in a word, this word is also underlined.</paragraph>
</tablecell>
</tablerow>
</table>

<paragraph role="heading" id="hd_id3152891" xml-lang="en-US" level="2" l10n="U" oldref="60">Shortcut Keys Using the Function Keys</paragraph>
<paragraph role="paragraph" id="par_id3152457" xml-lang="en-US" l10n="U" oldref="59"><switchinline select="sys"><caseinline select="MAC">Not all of the function shortcut keys are available on the Mac. 
</caseinline></switchinline></paragraph>
<table id="tbl_id1489608">
<tablerow>
<tablecell>
<paragraph role="tablehead" id="hd_id3149726" xml-lang="en-US" l10n="U" oldref="183">Shortcut keys</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablehead" id="par_id3153756" xml-lang="en-US" l10n="U" oldref="184">
<emph>Effect</emph>
</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149404" xml-lang="en-US" l10n="U" oldref="61"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>F1</defaultinline></switchinline></paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3145410" xml-lang="en-US" l10n="U" oldref="62"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>Starts the $[officename] Help</defaultinline></switchinline></paragraph>
<paragraph role="tablecontent" id="par_id3153697" xml-lang="en-US" l10n="U" oldref="152">In the $[officename] Help: jumps to main help page.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3154951" xml-lang="en-US" l10n="U" oldref="63"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>Shift + F1</defaultinline></switchinline></paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153309" xml-lang="en-US" l10n="U" oldref="64"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>Context Help</defaultinline></switchinline></paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3159220" xml-lang="en-US" l10n="U" oldref="292">Shift+F2</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3151241" xml-lang="en-US" l10n="U" oldref="293">Turns on Extended Tips for the currently selected command, icon or control.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3146871" xml-lang="en-US" l10n="U" oldref="68"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4 or <switchinline select="sys"><caseinline select="MAC">Option
</caseinline><defaultinline>Alt</defaultinline></switchinline>+F4</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3157978" xml-lang="en-US" l10n="U" oldref="69">Closes the current document (close $[officename] when the last open document is closed)</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3154532" xml-lang="en-US" l10n="U" oldref="180">F6</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3144506" xml-lang="en-US" l10n="U" oldref="179">Sets focus in next subwindow (for example, document/data source view)</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3144771" xml-lang="en-US" l10n="U" oldref="182">Shift+F6</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3147075" xml-lang="en-US" l10n="U" oldref="181">Sets focus in previous subwindow.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3156191" xml-lang="en-US" l10n="U" oldref="294">F10</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3156172" xml-lang="en-US" l10n="U" oldref="295">Activates the first menu (File menu)</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3159093" xml-lang="en-US" l10n="U" oldref="146">Shift+F10</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3148606" xml-lang="en-US" l10n="U" oldref="147">Opens the context menu.</paragraph>
</tablecell>
</tablerow>
</table>

<paragraph role="heading" id="hd_id3153288" xml-lang="en-US" level="2" l10n="U" oldref="287">Shortcut keys in the Gallery</paragraph>
<table id="tbl_id310678">
<tablerow>
<tablecell>
<paragraph role="tablehead" id="hd_id3156308" xml-lang="en-US" l10n="U" oldref="286">Shortcut keys</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablehead" id="par_id3149440" xml-lang="en-US" l10n="U" oldref="285">Result</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149971" xml-lang="en-US" l10n="U" oldref="284">Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153110" xml-lang="en-US" l10n="U" oldref="283">Moves between areas.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3148971" xml-lang="en-US" l10n="U" oldref="282">Shift+Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3154059" xml-lang="en-US" l10n="U" oldref="281">Moves between areas (backwards)</paragraph>
</tablecell>
</tablerow>
</table>

<paragraph role="heading" id="hd_id3152368" xml-lang="en-US" level="3" l10n="U" oldref="280">Shortcut keys in the New Theme area of the Gallery:</paragraph>
<table id="tbl_id8934598">
<tablerow>
<tablecell>
<paragraph role="tablehead" id="par_idN11555" xml-lang="en-US" l10n="NEW">Shortcut keys</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablehead" id="par_idN1155B" xml-lang="en-US" l10n="NEW">Result</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3159192" xml-lang="en-US" l10n="U" oldref="279">Up arrow</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3152540" xml-lang="en-US" l10n="U" oldref="278">Moves the selection up one.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3150892" xml-lang="en-US" l10n="U" oldref="277">Down arrow</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3151004" xml-lang="en-US" l10n="U" oldref="276">Moves the selection down.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3153976" xml-lang="en-US" l10n="U" oldref="275"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3146894" xml-lang="en-US" l10n="U" oldref="274">Opens the Properties dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3148652" xml-lang="en-US" l10n="U" oldref="273">Shift+F10</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153250" xml-lang="en-US" l10n="U" oldref="272">Opens a context menu.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3155614" xml-lang="en-US" l10n="U" oldref="271"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+U</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150099" xml-lang="en-US" l10n="U" oldref="270">Refreshes the selected theme.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3145755" xml-lang="en-US" l10n="U" oldref="269"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+R</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3146776" xml-lang="en-US" l10n="U" oldref="268">Opens the <emph>Enter Title</emph> dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3154642" xml-lang="en-US" l10n="U" oldref="267"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153653" xml-lang="en-US" l10n="U" oldref="266">Deletes the selected theme.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3155946" xml-lang="en-US" l10n="U" oldref="265">Insert</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3145372" xml-lang="en-US" l10n="U" oldref="264">Inserts a new theme</paragraph>
</tablecell>
</tablerow>
</table>

<paragraph role="heading" id="hd_id3150633" xml-lang="en-US" level="3" l10n="U" oldref="263">Shortcut keys in the Gallery preview area:</paragraph>
<table id="tbl_id9288308">
<tablerow>
<tablecell>
<paragraph role="tablehead" id="par_idN116D6" xml-lang="en-US" l10n="NEW">Shortcut keys</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablehead" id="par_idN116DC" xml-lang="en-US" l10n="NEW">Result</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149343" xml-lang="en-US" l10n="U" oldref="262">Home</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153241" xml-lang="en-US" l10n="U" oldref="261">Jumps to the first entry.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3148809" xml-lang="en-US" l10n="U" oldref="260">End</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3148902" xml-lang="en-US" l10n="U" oldref="259">Jumps to the last entry.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149382" xml-lang="en-US" l10n="U" oldref="258">Left Arrow</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150048" xml-lang="en-US" l10n="U" oldref="257">Selects the next Gallery element on the left.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3152926" xml-lang="en-US" l10n="U" oldref="256">Right Arrow</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153802" xml-lang="en-US" l10n="U" oldref="255">Selects the next Gallery element on the right.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3150776" xml-lang="en-US" l10n="U" oldref="254">Up Arrow</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149800" xml-lang="en-US" l10n="U" oldref="253">Selects the next Gallery element above.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3147517" xml-lang="en-US" l10n="U" oldref="252">Down Arrow</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3151223" xml-lang="en-US" l10n="U" oldref="251">Selects the next Gallery element below.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3145602" xml-lang="en-US" l10n="U" oldref="250">Page Up</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3147081" xml-lang="en-US" l10n="U" oldref="249">Scroll up one screen.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3153045" xml-lang="en-US" l10n="U" oldref="355">Page Down</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150411" xml-lang="en-US" l10n="U" oldref="248">Scroll down one screen.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3147278" xml-lang="en-US" l10n="U" oldref="246"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Insert</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153614" xml-lang="en-US" l10n="U" oldref="245">Inserts the selected object as a linked object into the current document.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3155345" xml-lang="en-US" l10n="U" oldref="244"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+I</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153608" xml-lang="en-US" l10n="U" oldref="243">Inserts a copy of the selected object into the current document.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3143278" xml-lang="en-US" l10n="U" oldref="242"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+T</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3156370" xml-lang="en-US" l10n="U" oldref="241">Opens the <emph>Enter Title</emph> dialog.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3145114" xml-lang="en-US" l10n="U" oldref="240"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3146107" xml-lang="en-US" l10n="U" oldref="239">Switches between themes view and object view.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3147552" xml-lang="en-US" l10n="U" oldref="238">Spacebar</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3145324" xml-lang="en-US" l10n="U" oldref="237">Switches between themes view and object view.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3148978" xml-lang="en-US" l10n="U" oldref="236">Enter</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3155743" xml-lang="en-US" l10n="U" oldref="235">Switches between themes view and object view.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3154108" xml-lang="en-US" l10n="U" oldref="234">Step backward (only in object view)</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153294" xml-lang="en-US" l10n="U" oldref="233">Switches back to main overview.</paragraph>
</tablecell>
</tablerow>
</table>

<section id="dbtable">
<paragraph role="heading" id="hd_id3149722" xml-lang="en-US" level="2" l10n="CHG" oldref="330">Selecting Rows and Columns in a Database Table (opened by F4)</paragraph>
<table id="tbl_id1178319">
<tablerow>
<tablecell>
<paragraph role="tablehead" id="par_idN11906" xml-lang="en-US" l10n="NEW">Shortcut keys</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablehead" id="par_idN1190C" xml-lang="en-US" l10n="NEW">Result</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3150963" xml-lang="en-US" l10n="U" oldref="331">Spacebar</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3146883" xml-lang="en-US" l10n="U" oldref="332">Toggles row selection, except when the row is in edit mode.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149787" xml-lang="en-US" l10n="U" oldref="333"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+spacebar</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149028" xml-lang="en-US" l10n="U" oldref="334">Toggles row selection</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3147482" xml-lang="en-US" l10n="U" oldref="335">Shift+spacebar</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149319" xml-lang="en-US" l10n="U" oldref="336">Selects the current column</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="par_id1418805" xml-lang="en-US" l10n="NEW"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+PgUp</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id1743522" xml-lang="en-US" l10n="NEW">Moves pointer to the first row</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="par_id5994140" xml-lang="en-US" l10n="NEW"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+PgDn</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id7870113" xml-lang="en-US" l10n="NEW">Moves pointer to the last row</paragraph>
</tablecell>
</tablerow>
</table>

</section>
<section id="zeichenobjekte">
<paragraph role="heading" id="hd_id3147411" xml-lang="en-US" level="2" l10n="U" oldref="230">Shortcut Keys for Drawing Objects</paragraph>
<table id="tbl_id1152073">
<tablerow>
<tablecell>
<paragraph role="tablehead" id="par_idN1199F" xml-lang="en-US" l10n="NEW">Shortcut keys</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablehead" id="par_idN119A5" xml-lang="en-US" l10n="NEW">Result</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149684" xml-lang="en-US" l10n="U" oldref="229">Select the toolbar with F6. Use the Down Arrow and Right Arrow to select the desired toolbar icon and press <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3155994" xml-lang="en-US" l10n="U" oldref="228">Inserts a Drawing Object.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3150264" xml-lang="en-US" l10n="U" oldref="227">Select the document with <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 and press Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3154055" xml-lang="en-US" l10n="U" oldref="226">Selects a Drawing Object.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149242" xml-lang="en-US" l10n="U" oldref="225">Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3157902" xml-lang="en-US" l10n="U" oldref="224">Selects the next Drawing Object.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3149349" xml-lang="en-US" l10n="U" oldref="223">Shift+Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150836" xml-lang="en-US" l10n="U" oldref="222">Selects the previous Drawing Object.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3109846" xml-lang="en-US" l10n="U" oldref="221"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3154276" xml-lang="en-US" l10n="U" oldref="220">Selects the first Drawing Object.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3145829" xml-lang="en-US" l10n="U" oldref="219"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3161664" xml-lang="en-US" l10n="U" oldref="218">Selects the last Drawing Object.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3153099" xml-lang="en-US" l10n="U" oldref="217">Esc</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149009" xml-lang="en-US" l10n="U" oldref="216">Ends Drawing Object selection.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3156271" xml-lang="en-US" l10n="U" oldref="338">Esc (in Handle Selection Mode)</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3152818" xml-lang="en-US" l10n="U" oldref="339">Exit Handle Selection Mode and return to Object Selection Mode.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3151258" xml-lang="en-US" l10n="U" oldref="192">Up/down/left/right arrow</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3159162" xml-lang="en-US" l10n="U" oldref="191">Move the selected point (the snap-to-grid functions are temporarily disabled, but end points still snap to each other).</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3146874" xml-lang="en-US" l10n="U" oldref="213"><switchinline select="sys"><caseinline select="MAC">Option
</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up/Down/Left/Right Arrow</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3144422" xml-lang="en-US" l10n="U" oldref="212">Moves the selected Drawing Object one pixel (in Selection Mode)</paragraph>
<paragraph role="tablecontent" id="par_id3153386" xml-lang="en-US" l10n="U" oldref="211">Re-sizes a Drawing Object (in Handle Selection Mode)</paragraph>
<paragraph role="tablecontent" id="par_id3145306" xml-lang="en-US" l10n="U" oldref="210">Rotates a Drawing Object (in Rotation Mode)</paragraph>
<paragraph role="tablecontent" id="par_id3159244" xml-lang="en-US" l10n="U" oldref="209">Opens the properties dialog for a Drawing Object.</paragraph>
<paragraph role="tablecontent" id="par_id3150763" xml-lang="en-US" l10n="U" oldref="208">Activates the Point Selection mode for the selected drawing object.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3153580" xml-lang="en-US" l10n="U" oldref="207">Spacebar</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3153053" xml-lang="en-US" l10n="U" oldref="206">Select a point of a drawing object (in Point Selection mode) / Cancel selection.</paragraph>
<paragraph role="tablecontent" id="par_id3145629" xml-lang="en-US" l10n="U" oldref="205">The selected point blinks once per second.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3148624" xml-lang="en-US" l10n="U" oldref="204">Shift+spacebar</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3154842" xml-lang="en-US" l10n="U" oldref="203">Select an additional point in Point Selection mode.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3147424" xml-lang="en-US" l10n="U" oldref="202"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3152955" xml-lang="en-US" l10n="U" oldref="201">Select the next point of the drawing object (Point Selection mode)</paragraph>
<paragraph role="tablecontent" id="par_id3149753" xml-lang="en-US" l10n="U" oldref="200">In Rotation mode, the center of rotation can also be selected.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3147233" xml-lang="en-US" l10n="U" oldref="199">Shift+<switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3151296" xml-lang="en-US" l10n="U" oldref="198">Select the previous point of the drawing object (Point Selection mode)</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3150933" xml-lang="en-US" l10n="U" oldref="340"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3145662" xml-lang="en-US" l10n="U" oldref="341">A new drawing object with default size is placed in the center of the current view.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3147563" xml-lang="en-US" l10n="U" oldref="342"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter at the Selection icon</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3150860" xml-lang="en-US" l10n="U" oldref="343">Activates the first drawing object in the document.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3154569" xml-lang="en-US" l10n="U" oldref="196">Esc</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3149994" xml-lang="en-US" l10n="U" oldref="195">Leave the Point Selection mode. The drawing object is selected afterwards.</paragraph>
<paragraph role="tablecontent" id="par_id3155512" xml-lang="en-US" l10n="U" oldref="193">Edit a point of a drawing object (Point Edit mode)</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="hd_id3148580" xml-lang="en-US" l10n="U" oldref="344">Any text or numerical key</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id3152918" xml-lang="en-US" l10n="U" oldref="345">If a drawing object is selected, switches to edit mode and places the cursor at the end of the text in the drawing object. A printable character is inserted.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="par_id2693563" xml-lang="en-US" l10n="NEW"><switchinline select="sys"><caseinline select="MAC">Option
</caseinline><defaultinline>Alt</defaultinline></switchinline> key while creating or scaling a graphic object</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id8308969" xml-lang="en-US" l10n="NEW">The position of the object's center is fixed.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" id="par_id526444" xml-lang="en-US" l10n="NEW">Shift key while creating or scaling a graphic object</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" id="par_id4939725" xml-lang="en-US" l10n="NEW">The ratio of the object's width to height is fixed.</paragraph>
</tablecell>
</tablerow>
</table>

</section>
<section id="relatedtopics">
<embed href="text/shared/04/01020000.xhp#DB_keys"/>
<embed href="text/shared/guide/keyboard.xhp#keyboard"/>
</section>
</body>
</helpdocument>