Textadept Quick Reference

Size: px
Start display at page:

Download "Textadept Quick Reference"

Transcription

1

2

3 SECOND EDITION Textadept Quick Reference Mitchell

4 Textadept Quick Reference by Mitchell Copyright 2013, 2015 Mitchell. All rights reserved. Contact the author at Although great care has been taken in preparing this book, the author assumes no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. All product names mentioned in this book are trademarks of their respective owners. Editor: Ana Balan Cover Designer: Mitchell Interior Designer: Mitchell Indexer: Mitchell Printing history: December 2013: First Edition May 2015: Second Edition ISBN:

5 Preface to the Second Edition This book is an updated version of the first edition of Textadept Quick Reference and covers many of the new features introduced in the Textadept 7.x releases. It reflects the current state of Textadept 8.0 and provides a collection of new and updated examples that demonstrate the power and flexibility of the editor. In a nutshell, this book covers the following new topics: Textadept s project support, including build commands. Its new autocompletion and documentation framework along with built-in, preregistered list images. Multi-input inputbox dialogs and the new option (checkbox) dialog. Textadept s new and improved command entry. Spawning and interacting with asynchronous processes. The vast number of terminal version improvements, including suspend, resume, Control Sequence Introducer (CSI), and mouse events. Extending existing menus in-place. For a comprehensive list of changes between Textadept versions, please refer to the editor s CHANGELOG.md or doc/ CHANGELOG.html files, which are distributed with the application. The online version is located at adept/changelog.html.

6

7 Contents Introduction 1 Download 2 Conventions 2 Terminology 2 Environment Variables 3 Important Files and Directories 3 Command Line Options 8 Define Custom Options 9 Global Variables 9 Platform Variables 10 Handle Events 10 Create Buffers and Views 11 Query View Information 12 Handle Buffer and View Events 13 Work with Files and Projects 13 Detect or Change File Encodings 15 Query File Information 16 Handle Input and Output Events 17 Work with Sessions 18 Configure Session Settings 18 Move Around 18 Move Within Lines 18 Move Between Lines 19 Move Between Pages 20 Move Between Buffers and Views 20 Contents v

8 Other Movements 21 Handle Movement Events 21 Manipulate Text 22 Retrieve Text 22 Set Text 23 Delete Text 25 Transform Text 26 Undo and Redo 29 Employ the Clipboard 29 Handle Text Events 30 Select Text 30 Make Simple Selections 31 Make Multiple Selections 34 Make Rectangular Selections 35 Query Selection Information 36 Search for Text 38 Simple Search 40 Search and Replace 41 Interact with the Find & Replace Pane 42 Incremental Search 44 Handle Find & Replace Events 44 Query Buffer Information 45 Query Position Information 45 Query Line and Line Number Information 46 Query Measurement Information 47 Configure Line Margins 47 Query Margin Information 49 Handle Margin Events 49 vi Contents

9 Mark Lines with Markers 50 Bookmark Lines 53 Query Marker Information 54 Annotate Lines 54 Query Annotated Lines 55 Mark Text with Indicators 55 Highlight Words 57 Query Indicator Information 58 Handle Indicator Events 58 Show an Interactive List 58 Display an Autocompletion List 59 Display a User List 60 Configure List Behavior and Display 61 Display Images in Lists 62 Query Interactive List Information 64 Handle Interactive List Events 65 Show a Call Tip 65 Configure Call Tip Display 66 Query Call Tip Information 67 Handle Call Tip Events 67 Fold or Hide Lines 67 Query Folded or Hidden Line Information 68 Scroll the View 69 Prompt for Input with Dialogs 70 Prompt with Messagebox Dialogs 70 Prompt with Inputbox Dialogs 72 Prompt with File Selection Dialogs 73 Prompt with a Textbox Dialog 75 Contents vii

10 Prompt with Dropdown Dialogs 76 Prompt with a Filtered List Dialog 78 Prompt with an Option Dialog 80 Manipulate the Command Entry 81 Issue Lua Commands 83 Compile and Run Code 83 Configure Compile and Run Settings 84 Query Compile and Run Information 85 Handle Compile and Run Events 85 Spawn Processes 85 Configure Textadept 87 Configure Indentation and Line Endings 87 Configure Character Settings 89 Configure the Color Theme 90 Create or Modify a Color Theme 90 Configure the Display Settings 97 Configure File Types 106 Configure Key Bindings 107 Configure Key Settings 110 Configure Snippets 111 Configure Miscellaneous Settings 113 Define a Lexer 113 Declare the Lexer Configuration 113 Construct Patterns 114 Define Tokens 118 Define Rules 118 Assign Styles 119 Specify Fold Points 120 Embed Lexers 120 viii Contents

11 Query Lexer Properties and Rules 121 Handle Lexer Events 121 Manually Style Text 122 Refresh Styling 122 Assign Plain Text Styles 122 Style Plain Text 123 Query Style Information 124 Miscellaneous 124 Handle Miscellaneous Events 125 Appendix: Image Formats 128 XPM Image Format 128 RGBA Image Format 129 Index of Key and Mouse Bindings 130 Lua API Index 139 Concept Index 151 Contents ix

12 Introduction Textadept is a fast, minimalist, and remarkably extensible cross-platform text editor for programmers. Written in a combination of C and Lua 1 and relentlessly optimized for speed and minimalism for over six years, Textadept is an ideal editor for programmers who want endless extensibility without sacrificing speed or succumbing to code bloat and featuritis. Textadept runs in both graphical and text-based user interface environments. The text-based version of the editor is referred to as the terminal version, since it executes within a terminal emulator. Textadept also supports the standard Lua and LuaJIT 2 environments. The version that utilizes LuaJIT is referred to as the LuaJIT version. Textadept Quick Reference is designed to help the user get things done when it comes to scripting and configuring Textadept. Its pragmatic approach assumes the user has a working knowledge of both Lua and Textadept. This book is broken up into a number of descriptive sections with conveniently grouped tasks that cover nearly every aspect of Textadept s Application Programming Interface (API). For the most part, the contents of each task are not listed in conceptual order. They are listed in procedural order, an order the user would likely follow when writing Lua scripts. This quick reference serves as a complement to Textadept s comprehensive Manual and extensive API documentation. While this book aims to be a complete reference, it does omit some of the less useful features of Textadept s API. For example, although many of Textadept s table fields are both readable and writable, this reference sometimes chooses to cover only one of those operations. (Unless a field is marked Readonly or Write-only, it is readable and writable.) This book also does not cover Lua s standard libraries. Finally, the facilities in this book are designed to be used primarily in user-written Lua scripts and in the occasional oneshot Lua command. If the user keeps this in mind, he or she can realize Textadept s full potential Introduction 1

13 Download Textadept binary packages for Windows, Mac OSX, and Linux platforms are available from Each package is self-contained and need not be installed. Textadept s source code is also included in each archive. The user may compile the application manually by following the instructions in the editor s Manual. Conventions This book uses the following conventions. Italic Used for filenames and for introducing new terms. Constant width Used for environment variables, command line options, and Lua code, including functions, tables, and variables. Constant width italic Used for user-specified parameters. [] Used for optional function arguments, except in code examples that index Lua tables. Unless otherwise specified, optional arguments default to nil. Terminology This book uses the following terminology. Buffer An object that contains editable text. View An object that contains a single buffer. Caret Either the visual that represents the text insertion point or the end point of a text selection. Anchor The start point of a text selection or search. 2 Textadept Quick Reference

14 Virtual Space The space past the ends of lines. Lexer A Lua module that highlights the syntax of source code written in a particular programming language. Textadept refers to a programming language by its lexer s name. Style A collection of display settings specific to source code comments, strings, keywords, and other ranges of text. Language Module A Lua module automatically loaded by Textadept when editing source code in a particular programming language. The module s name matches the language s lexer name. Not all languages have language modules. Environment Variables Textadept utilizes the following environment variables. HOME or USERHOME The user s home directory. Textadept s user data and preferences exist in a.textadept/ sub-directory, denoted as ~/.textadept/ throughout this book. LANG The user s default locale. Textadept will display localized text and messages in it if possible. TEXTADEPTJIT (Mac OSX only) When set, Textadept.app runs its LuaJIT version. TA_LUA_PATH TA_LUA_CPATH The Textadept equivalent of LUA_PATH and LUA_CPATH. Used by Lua s require() function for finding modules. Important Files and Directories Textadept allows the user to configure and customize the editor using several important files and directories contained within his or her ~/.textadept/ directory. Important Files and Directories 3

15 notations to match the annotated text, and outlines them with a box. buffer.annotation_indented draws indented annotations without a box, buffer.annotation_standard draws annotations left-justified with no decoration, and buffer.annotation_hidden hides annotations. Query Annotated Lines The user can request a line s annotation text along with the number of lines needed to display that text. buffer.annotation_text[line] The annotation text for line number line. buffer.annotation_lines[line] (Read-only) The number of annotation text lines for line number line. Mark Text with Indicators Textadept supplies 32 indicators, numbered from 0 to 31, to mark text with. Each indicator has an assigned indicator style from the list in Table 7. The editor displays indicators along with any existing styles text may have. Example 12 shows how to create and interact with clickable hyperlinks. Table 7. Indicator styles Indicator Style buffer.indic_squigglepixmap buffer.indic_plain buffer.indic_dash buffer.indic_dots Visual or Description A squiggly underline. An underline. A dashed underline. A dotted underline. buffer.indic_compositionthick A thick underline. buffer.indic_strikeout buffer.indic_box buffer.indic_dotbox buffer.indic_straightbox A strikeout line. A bounding box. A dotted bounding box. A translucent box. Mark Text with Indicators 55

16 Indicator Style buffer.indic_roundbox buffer.indic_fullbox buffer.indic_tt buffer.indic_diagonal buffer.indic_textfore buffer.indic_hidden Visual or Description A translucent box with rounded corners. A translucent box that extends to the top of its line. An underline of small T shapes. An underline of diagonal hatches. Changes text s foreground color. Plain text with no decorations. Example 12. Create and interact with hyperlinks local browser_cmd = 'firefox "% s"' -- Define the hyperlink indicator. indic_link = _SCINTILLA.next_indic_number() buffer.indic_style[indic_link] = buffer.indic_hidden local TEXTFORE = buffer.indic_textfore buffer.indic_hover_style[indic_link] = TEXTFORE buffer.indic_hover_fore[indic_link] = 0xFF blue -- Search the buffer and mark hyperlinks. local text = buffer:get_text() buffer.indicator_current = indic_link buffer:indicator_clear_range(0, buffer.length) for s, e in text:gmatch('() % S+()') do buffer:indicator_fill_range(s - 1, e - s) end -- Open clicked hyperlinks in a web browser. events.connect(events.indicator_click, function(pos) local indicators = buffer:indicator_all_on_for(pos) if bit32.band(indicators, indic_link) then local s = buffer:indicator_start(indic_link, pos) local e = buffer:indicator_end(indic_link, pos) local url = buffer:text_range(s, e + 1) spawn(browser_cmd:format(url)) end end) _SCINTILLA.next_indic_number() Returns a unique indicator number. buffer.indic_style[indicator] = style Assigns indicator style style to indicator number indica tor. Table 7 lists all available indicator styles. The section Assign Indicator Colors on page 95 describes how to 56 Textadept Quick Reference

17 change the color and alpha values of indicator. Also resets buffer.indic_hover_style[indicator] to style. The terminal version requires style to be buffer.indic_ STRAIGHTBOX, but cannot draw it translucently. TIP The user should either assign indicator styles in his or her ~/.textadept/properties.lua file or within an events.view_ NEW handler, so subsequent views can recognize them. buffer.indic_under[indicator] = bool Draw indicator number indicator behind text instead of in front of it. The default value is false. buffer.indic_hover_style[indicator] = style Assigns indicator style style to indicator number indica tor when either the mouse is hovering over that indicator or when the caret is within that indicator. buffer.indicator_current = indicator Designates indicator number indicator as the indicator used by buffer:indicator_fill_range() and buffer:indi cator_clear_range(). buffer:indicator_fill_range(pos, length) buffer:indicator_clear_range(pos, length) Fills or clears the range of text from position pos to pos + length with indicator number buffer.indicator_current. Highlight Words The user can highlight all instances of a word (for example, all instances of a variable name). Subsequent calls to text adept.editing.select_word() select each occurrence of that word, providing a simple renaming tool. textadept.editing.highlight_word() Highlights all occurrences of the selected text or all occurrences of the current word. buffer.word_chars is a string that contains all word characters. Mark Text with Indicators 57

18 Query Indicator Information The user can fetch indicator locations and retrieve the indicators present at particular positions. buffer:indicator_start(indicator, pos) buffer:indicator_end(indicator, pos) Returns the previous or next boundary position, starting from position pos, of indicator number indicator. Returns 0 or buffer.length, respectively, if indicator was not found. buffer:indicator_all_on_for(pos) Returns a bit-mask that represents the indicators present at position pos. The mask is a 32-bit value whose bits correspond to Textadept s 32 indicators. Handle Indicator Events The user can connect to the following indicator click events. events.indicator_click position, modifiers Emitted when clicking the mouse on text that has an indicator present. position is the clicked text s position and modifiers is a bit-mask of any modifier keys used (buf fer.mod_ctrl for Control, buffer.mod_shift for Shift, buf fer.mod_alt for Alt, and buffer.mod_meta for Command). events.indicator_release position Emitted when releasing the mouse after clicking on text that has an indicator present. position is the clicked text s position. Show an Interactive List Textadept has the ability to display two types of interactive lists that update as the user types: an autocompletion list and a user list. An autocompletion list is a list of completions shown for the current word. A user list is a more general list of options presented to the user. Both types of lists have similar behavior and may display images alongside text. All of the above is described in the following sections. 58 Textadept Quick Reference

19 Concept Index Symbols ~/.textadept/, 3, 8, 10 A annotations, 54 autocompleting code, 59 autocompletion list configuring, 61 displaying, 59 images in, displaying, information, 64 autopaired characters, 25 B block comments, 28 bookmarks, 21, 53, 95 brace matching, 21, 96, 104 buffers creating, 12 line information in, 46 list of open, 9 manipulating text in (see manipulating text) measurements, 47 moving around in (see moving around) moving between, 20 position information in, 45 searching and replacing in (see searching for text) selecting text in (see selecting text) C call tip configuring, 66, 92, 96 displaying, 65 information, 67 character classifications, 89 clipboard operations, 29 code autocompletion, 59 code folding, 67, 103, 120 color theme bookmarks, 95 carets, 93 changing, 90 color definitions, 91, 93 highlighted words, 96 indicators, 95 location of, 6 long lines, 97 margins, 94 markers, 94 matching braces, 96 selections, 94 styles for, whitespace, 96 Command Entry, 81 Lua commands with, issuing, 83 command line options, 8-10 commenting code, 28 compiling and running code, 83 configuring Textadept ~/.textadept/, 8 autopaired characters, 25 block comments, 28 character classifications, 89 color theme (see color theme) compile and run code, 84 display settings (see display settings) file types, 106 Index 151

20 configuring Textadept (continued) key bindings (see key bindings) line endings, 88 line indentation, 87 locale, 5 matching braces, 104 sessions, 8, 18 snippets (see snippets) typeover characters, 25 D deleting text, 25 dialogs dropdown, file selection, 73 filtered list, 78 inputbox, 72 messagebox, 70 option, 80 textbox, 75 display settings carets, 97 indentation guides, 104 long lines, 103 matching braces, 104 mouse cursor, 100 scrollbars, 99 selections, 98 whitespace, 98 window, 104 wrapped lines, 101 zoom, 102 downloading Textadept, 2 dropdown dialog, E encodings converting between, 28 for files, 15 of filesystem, 10 supported, list of, 15 end of lines, 88 environment variables, 3 events autocompletion list, 65 buffer and view, 13 call tip, 67 compile and run, 85 connecting to, 11 CSI, 125 double click, 125 dwell, 125 emitting, 11 error, 126 Find & Replace, 44 focus, 126 indicator, 58 initialized, 126 input and output, 17 interactive list, 65 keypress, 126 lexer, 121 margin, 49 mouse, 126 movement, 21 no command line arguments, 125 quit, 126 reset, 126 resume, 126 suspend, 126 text, 30 update, 126 user list, 65 F file encodings, 15 file filters, 15 file information, 16 file operations, file selection dialog, 73 file types, 106 filesystem encoding, 10 filtered list dialog, 78 filtering text through shell commands, Index

21 Find & Replace Pane, 42 Lua pattern syntax for, 39 search flags for, 42 searching and replacing with, 43 searching in files with, 43 finding text (see searching for text) fold markers, 51 folding lines, 67 fonts and font sizes, 91-93, 102 H hiding lines, 68 highlighting words, 57, 96 I image formats, RGBA, 129 XPM, 128 incremental searching, 44 indentation, 26, 46, indentation guides, 104 indicators, 55-58, 95 init.lua, 4 input, prompting for (see dialogs) inputbox dialog, 72 inserting text, 23 installing Textadept, 2 interactive lists (see autocompletion list; user list) internationalizing messages, 9 K key bindings configuring, 110 keys.keysyms, 109 modifier keys, list of, 109 terminology, L language modules, location of, 5 lexers changing, 106 code folding, 120 defining, 113 embedding, 120 fold points, 120 information, 106 location of, 6 patterns, properties for, 121 rules, 118 styles, 119 tokens, 118 line annotations, 54 line endings, 88 line indentation, 26, 46, line information, 46 line margins, 47-49, 94 line markers, 50-54, 94 line wrapping, 101 lines annotations, 54 bookmarking, 53 endings for, 88 folding, 67 hiding, 68 indentation for, 26, 46, information for, 46, 68 joining, 27 long, 97, 103 marking, 50-53, 94 moving between, 19 moving up or down, 27 moving within, 18 splitting, 27 transposing, 26 wrapping, 101 locale, 3, 5 Index 153

22 localizing messages, 9 long lines, 97, 103 Lua commands, issuing, 8, 83 Lua pattern syntax, 39 M manipulating text clipboard, using the, 29 converting between encodings, 28 deleting, 25 inserting, 23 replacing, 24 retrieving, 22 setting, 23 transforming, 27 margins, 47-49, 94 marking lines, 50-53, 94 marking text, 55-57, 95 matching braces, 21, 96, 104 measurements, 47 messagebox dialog, 70 modules, location of, 5 moving around between bookmarks, 21 between buffers, 20 between lines, 19 within lines, 18 between matching braces, 21 between pages, 20 between paragraphs, 21 selecting and, 32, 36 between views, 20 multiple selections, 34, 37 O option dialog, 80 overtype mode, toggling, 124 P pages, moving between, 20 paragraphs, moving between, 21 piping text through shell commands, 27 pixmaps, 128 position information, 45 post_init.lua, 5 printing messages, 23 processes, spawning of, properties.lua, 5 Q quitting, 124 R rectangular selections, replacing text, 24, 41 resetting, 124 retrieving text, 22 RGBA image format, 129 running code, 83 running Textadept, 8 S scrolling, 69, 99 search flags, 38, 42 searching for text in files, 43 Find & Replace Pane, using the, 42 incrementally, 44 regular expression syntax for, 39 replacing and, 41 search flags for, 38, 42 simple search, 40 selecting text modal selection, 34 multiple selection, 34 rectangular selection, 35 simple selection, 31 while moving, 32 selections, 36, 94, Index

23 sessions, 8, 18 setting text, 23 snippets configuring, 112 inserting, 24 special characters, list of, 112 terminology, 111 spawning processes, split views, 12 style information, 124 styles, styling text, (see also lexers) switching buffers, 20 switching views, 20 syntax highlighting, 106, 122 (see also lexers) T target ranges, 24, 27, 41 text indicators, 55-58, 95 text manipulations (see manipulating text) text selections (see selecting text; selections) Textadept configuring (see configuring Textadept) downloading, 2 installing, 2 running, 8 user data directory of, 3, 8, 10 textbox dialog, 75 theme (see color theme) transforming text, 27 transposing characters and lines, 26 typeover characters, 25 U undo and redo actions, 29 user data directory, 3, 8, 10 user list configuring, 61 displaying, 60 images in, displaying, information, 64 V variables, 9 views information, 12 list of open, 9 moving between, 20 scrolling, 69 splitting, 12 unsplitting, 12 W window, 104 wrapping lines, 101 X XPM image format, 128 Z zooming, 102 Index 155

Textadept Quick Reference

Textadept Quick Reference THIRD EDITION Textadept Quick Reference Mitchell Textadept Quick Reference by Mitchell Copyright 2013, 2015, 2016 Mitchell. All rights reserved. Contact the author at mitchell@foicica.com. Although great

More information

Textadept Quick Reference. Mitchell

Textadept Quick Reference. Mitchell Textadept Quick Reference Mitchell Textadept Quick Reference by Mitchell Copyright 2013 Mitchell. All rights reserved. Contact the author at mitchell.att.foicica.com. Although great care has been taken

More information

Textadept Quick Reference

Textadept Quick Reference FOURTH EDITION Textadept Quick Reference Mitchell Textadept Quick Reference by Mitchell Copyright 2013, 2015, 2016, 2018 Mitchell. All rights reserved. Contact the author at mitchell@foicica.com. Although

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1 DRAFT Table of Contents About this manual... ix About CuteSITE Builder... ix Getting Started... 1 Setting up... 1 System Requirements... 1 To install CuteSITE Builder... 1 To register CuteSITE Builder...

More information

San Pedro Junior College. WORD PROCESSING (Microsoft Word 2016) Week 4-7

San Pedro Junior College. WORD PROCESSING (Microsoft Word 2016) Week 4-7 WORD PROCESSING (Microsoft Word 2016) Week 4-7 Creating a New Document In Word, there are several ways to create new document, open existing documents, and save documents: Click the File menu tab and then

More information

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved.

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved. 4D Write User Reference Mac OS and Windows Versions 4D Write 1999-2002 4D SA/4D, Inc. All Rights reserved. 4D Write User Reference Version 6.8 for Mac OS and Windows Copyright 1999 2002 4D SA/4D, Inc.

More information

Microsoft Word 2011 Tutorial

Microsoft Word 2011 Tutorial Microsoft Word 2011 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Insert/Edit Image. Overview

Insert/Edit Image. Overview Overview The tool is available on the default toolbar for the WYSIWYG Editor. The Images Gadget may also be used to drop an image on a page and will automatically spawn the Insert/Edit Image modal. Classic

More information

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button PROCEDURES LESSON 1: CREATING WD DOCUMENTS WITH HEADERS AND FOOTERS Starting Word 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Word 2010 1 Click

More information

Microsoft Word Part I Reference Manual

Microsoft Word Part I Reference Manual Microsoft Word 2002 Part I Reference Manual Instructor: Angela Sanderson Computer Training Coordinator Updated by: Angela Sanderson January 11, 2003 Prepared by: Vi Johnson November 20, 2002 THE WORD SCREEN

More information

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23 PowerPoint Level 1 Table of Contents Chapter 1 Getting Started... 7 Interacting with PowerPoint... 7 Slides... 7 I. Adding Slides... 8 II. Deleting Slides... 8 III. Cutting, Copying and Pasting Slides...

More information

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41 Table of Contents iii Table of Contents Word Starting Word What is word processing? 2 Starting Word 2 Exploring the Start screen 4 Creating a blank document 4 Exploring the Word document window 5 Exploring

More information

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

Acrobat X Professional

Acrobat X Professional Acrobat X Professional Toolbar Well Page Navigations/Page Indicator Buttons for paging through document Scroll Bar/box page indicator appears when using the scroll button to navigate. When you release

More information

What can Word 2013 do?

What can Word 2013 do? Mary Ann Wallner What can Word 2013 do? Provide the right tool for: Every aspect of document creation Desktop publishing Web publishing 2 Windows 7: Click Start Choose Microsoft Office > Microsoft Word

More information

CMS Training. Web Address for Training Common Tasks in the CMS Guide

CMS Training. Web Address for Training  Common Tasks in the CMS Guide CMS Training Web Address for Training http://mirror.frostburg.edu/training Common Tasks in the CMS Guide 1 Getting Help Quick Test Script Documentation that takes you quickly through a set of common tasks.

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

At the shell prompt, enter idlde

At the shell prompt, enter idlde IDL Workbench Quick Reference The IDL Workbench is IDL s graphical user interface and integrated development environment. The IDL Workbench is based on the Eclipse framework; if you are already familiar

More information

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display.

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display. Status Bar The status bar is located on the bottom of the Microsoft Word window. The status bar displays information about the document such as the current page number, the word count in the document,

More information

page 1 OU Campus User Guide

page 1 OU Campus User Guide page 1 OU Campus User Guide Logging Into OU Campus page page 2 1. Navigate to a page on your site that you wish to edit. 2. Scroll down to the footer and click the symbol. 3. Enter your OU Campus username

More information

OpenForms360 Validation User Guide Notable Solutions Inc.

OpenForms360 Validation User Guide Notable Solutions Inc. OpenForms360 Validation User Guide 2011 Notable Solutions Inc. 1 T A B L E O F C O N T EN T S Introduction...5 What is OpenForms360 Validation?... 5 Using OpenForms360 Validation... 5 Features at a glance...

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

Microsoft Word 2010 Lesson Plan

Microsoft Word 2010 Lesson Plan Microsoft Word 2010 Lesson Plan Objective: This class is a brief introduction to Word 2010. It consists of 2 one and one-half hour sessions. By the end of this class you should be able to create a simple

More information

BHM Website Teacher User Guide

BHM Website Teacher User Guide BHM Website Teacher User Guide How to Login 1. Go to HUhttp://bhmschools.org/userUH 2. Enter your username and password and click Log in How to Change Your Password 1. Go to My Account in your Nav bar

More information

Beginners Guide to Snippet Master PRO

Beginners Guide to Snippet Master PRO Beginners Guide to Snippet Master PRO This document assumes that Snippet Master has been installed on your site. If not please contact the Bakas IT web team at webreg@bakasit.com.au. Initial Login Screen...

More information

Unit D Lecture Notes Word 2003

Unit D Lecture Notes Word 2003 Unit D Lecture Notes Word 2003 Objectives: In this project you will learn: Set document margins Divide a document into sections Insert page breaks Insert page numbers Add headers and footers Edit headers

More information

Coding Faster: Getting More Productive with Microsoft Visual

Coding Faster: Getting More Productive with Microsoft Visual Microsoft Coding Faster: Getting More Productive with Microsoft Visual Studio Covers Microsoft Visual Studio 2005, 2008, and 2010 Zain Naboulsi Sara Ford Table of Contents Foreword Introduction xxiii xxvii

More information

Standard Windows Keyboard Layout & Keyboard Shortcuts

Standard Windows Keyboard Layout & Keyboard Shortcuts Standard Windows Keyboard Layout & Keyboard Shortcuts Desktop keyboard Laptop keyboard Explanation of the Keys on a Windows QWERTY Keyboard Q W E R T Y "The name "QWERTY" for our computer keyboard comes

More information

Word Getting Started The Word Window u vw. Microsoft QUICK Source. Creating a New Blank Document. Creating a New Document from a Template

Word Getting Started The Word Window u vw. Microsoft QUICK Source. Creating a New Blank Document. Creating a New Document from a Template Microsoft QUICK Source Word 2007 Getting Started The Word Window u vw x y z u Quick Access Toolbar contains shortcuts for the most commonly used tools. v Microsoft Office Button contains common file and

More information

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

Lesson 13 Editing and Formatting documents

Lesson 13 Editing and Formatting documents Editing and Formatting documents Computer Literacy BASICS: A Comprehensive Guide to IC 3, 4 th Edition 1 Objectives Delete and insert text using Backspace, Delete, Insert, Overtype modes. Undo, redo, and

More information

WYSIWYG Editor: Users Manual

WYSIWYG Editor: Users Manual WYSIWYG Editor: Users Manual Table of Contents WYSIWYG Editor Overview.... 3 Adding Text... 4 Inserting an Image.... 7 Inserting a File.... 15 Embedding Media.... 21 Inserting an Email Link.... 25 Captiva

More information

Microsoft Office Word. Help. Opening a Document. Converting from Older Versions

Microsoft Office Word. Help. Opening a Document. Converting from Older Versions Microsoft Office 2007 - Word Help Click on the Microsoft Office Word Help button in the top right corner. Type the desired word in the search box and then press the Enter key. Choose the desired topic

More information

TABLE OF CONTENTS. i Excel 2016 Basic

TABLE OF CONTENTS. i Excel 2016 Basic i TABLE OF CONTENTS TABLE OF CONTENTS I PREFACE VII 1 INTRODUCING EXCEL 1 1.1 Starting Excel 1 Starting Excel using the Start button in Windows 1 1.2 Screen components 2 Tooltips 3 Title bar 4 Window buttons

More information

Word 2013 Quick Start Guide

Word 2013 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, and Word Options. Ribbon: Logically organize actions onto Tabs, Groups, and Buttons to facilitate finding commands. Active Document

More information

Code Editor. The Code Editor is made up of the following areas: Toolbar. Editable Area Output Panel Status Bar Outline. Toolbar

Code Editor. The Code Editor is made up of the following areas: Toolbar. Editable Area Output Panel Status Bar Outline. Toolbar Code Editor Wakanda s Code Editor is a powerful editor where you can write your JavaScript code for events and functions in datastore classes, attributes, Pages, widgets, and much more. Besides JavaScript,

More information

MS Word Professional Document Alignment

MS Word Professional Document Alignment MS Word Professional Document Alignment Table of Contents CHARACTER VS. PARAGRAPH FORMATTING...5 Character formatting...5 Paragraph Formatting...5 USING SHOW/HIDE TO REVEAL NON-PRINTING CHARACTERS...5

More information

Save Forum Messages will be sent and Pages will be completed by pressing this Save button.

Save Forum Messages will be sent and Pages will be completed by pressing this Save button. I. TEXT EDITOR DIAGRAM 1 2 3 4 5 6 7 8 9 0 - = q w 1 Source Embed source code for YouTube videos, Smileboxes, etc. This button acts as a toggle switch. Click Source to open the screen on which to paste

More information

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 2: Slides with Charts & Shapes... 12 Working with Charts

More information

Word 2010 Beginning. Technology Integration Center

Word 2010 Beginning. Technology Integration Center Word 2010 Beginning File Tab... 2 Quick Access Toolbar... 2 The Ribbon... 3 Help... 3 Opening a Document... 3 Documents from Older Versions... 4 Document Views... 4 Navigating the Document... 5 Moving

More information

Regexator. User Guide. Version 1.3

Regexator. User Guide. Version 1.3 Regexator User Guide Version 1.3 Regexator User Guide C O N T E N T S 1 INTRODUCTION 5 1.1 Main Window 5 1.2 Regex Categories 6 1.3 Switcher 6 1.4 Tab Reordering 6 2 PROJECT EXPLORER 7 2.1 Project 7 2.2

More information

TinyMCE Users Guide. This user manual will show you all the basics of the TinyMCE editor.

TinyMCE Users Guide. This user manual will show you all the basics of the TinyMCE editor. Introduction TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor. What this means is that it will let you create html content on your web site. TinyMCE supports a lot of Operation

More information

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the Show All About spreadsheets You can use a spreadsheet to enter and calculate data. A spreadsheet consists of columns and rows of cells. You can enter data directly into the cells of the spreadsheet and

More information

Microsoft Word Tutorial

Microsoft Word Tutorial Microsoft Word Tutorial 1 GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Word Processing Graphics

Word Processing Graphics Class Description This class is intended for those who are comfortable with the fundamentals of word processing. It covers the use of various types of graphics to improve or clarify or just beautify the

More information

APPENDIX THE TOOLBAR. File Functions

APPENDIX THE TOOLBAR. File Functions APPENDIX THE TOOLBAR Within the WYSIWYG editor, there are a variety of functions available to the user to properly update the page. Below is a list of all the functions available. Keep in mind that the

More information

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9 TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 DEFINITIONS... 3 WHY WOULD YOU USE THIS?... 3 STEP BY STEP... 3 USING WORD S TOOLBARS... 5 DEFINITIONS... 5 WHY WOULD

More information

Do It Yourself Website Editing Training Guide

Do It Yourself Website Editing Training Guide Do It Yourself Website Editing Training Guide Version 3.0 Copyright 2000-2011 Sesame Communications. All Rights Reserved. Table of Contents DIY Overview 3 What pages are editable using the DIY Editing

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Lehigh University Library & Technology Services

Lehigh University Library & Technology Services Lehigh University Library & Technology Services Start Word Open a file called day2 Microsoft WORD 2003 Day 2 Click the Open button on the Standard Toolbar Go to the A: drive and highlight day2 and click

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

2 Getting Started. Getting Started (v1.8.6) 3/5/2007

2 Getting Started. Getting Started (v1.8.6) 3/5/2007 2 Getting Started Java will be used in the examples in this section; however, the information applies to all supported languages for which you have installed a compiler (e.g., Ada, C, C++, Java) unless

More information

Using Sitecore 5.3.1

Using Sitecore 5.3.1 Using Sitecore 5.3.1 An End-User s Guide to Using and Administrating Sitecore Author: Sitecore Corporation Date: December 12, 2007 Release: Rev. 1.0 Language: English Sitecore is a registered trademark.

More information

MS Word Basics. Groups within Tabs

MS Word Basics. Groups within Tabs MS Word Basics Instructor: Bev Alderman L e t s G e t S t a r t e d! Open and close MS Word Open Word from the desktop of your computer by Clicking on the Start>All programs>microsoft Office >Word 2010

More information

Bridge Program Computer Skills Self-Inventory

Bridge Program Computer Skills Self-Inventory Name Date Bridge Program Computer Skills Self-Inventory This inventory is a lengthy but non-comprehensive list of beginning, intermediate and advanced computer skills a typical college graduate would have.

More information

Unit Microsoft Word. Microsoft Word is the word processor included in Office. Word is one of the most popular word processors.

Unit Microsoft Word. Microsoft Word is the word processor included in Office. Word is one of the most popular word processors. Unit 4 1. Microsoft Word. Microsoft Word is the word processor included in Office. Word is one of the most popular word processors. Unformatted text documents have the extension TXT. Word documents have

More information

User Guide. Chapter 6. Teacher Pages

User Guide. Chapter 6. Teacher Pages User Guide Chapter 6 s Table of Contents Introduction... 5 Tips for s... 6 Pitfalls... 7 Key Information... 8 I. How to add a... 8 II. How to Edit... 10 SharpSchool s WYSIWYG Editor... 11 Publish a...

More information

Working with PDF s. To open a recent file on the Start screen, double click on the file name.

Working with PDF s. To open a recent file on the Start screen, double click on the file name. Working with PDF s Acrobat DC Start Screen (Home Tab) When Acrobat opens, the Acrobat Start screen (Home Tab) populates displaying a list of recently opened files. The search feature on the top of the

More information

The Text Editor appears in many locations throughout Blackboard Learn and is used to format text. For example, you can use it to:

The Text Editor appears in many locations throughout Blackboard Learn and is used to format text. For example, you can use it to: About the Text Editor The Text Editor appears in many locations throughout Blackboard Learn and is used to format text. For example, you can use it to: Add items to Content Areas, Learning Modules, Lesson

More information

ABBYY FineReader 14. User s Guide ABBYY Production LLC. All rights reserved.

ABBYY FineReader 14. User s Guide ABBYY Production LLC. All rights reserved. ABBYY FineReader 14 User s Guide 2017 ABBYY Production LLC All rights reserved Information in this document is subject to change without notice and does not bear any commitment on the part of ABBYY The

More information

Requirements Document

Requirements Document GROUP 9 Requirements Document Create-A-Page Matthew Currier, John Campbell, and Dan Martin 5/1/2009 This document is an outline of what was originally desired in the application in the Project Abstract,

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTRODUCTION TO MICROSOFT WORD 2016 Introduction to Microsoft Word 2016 (WRD2016.1 version 1.0.0) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn joined

More information

Microsoft Word Important Notice

Microsoft Word Important Notice Microsoft Word 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

Draw Guide. Chapter 9 Adding and Formatting Text

Draw Guide. Chapter 9 Adding and Formatting Text Draw Guide Chapter 9 Adding and Formatting Text Copyright This document is Copyright 2010 2012 by its contributors as listed below. You may distribute it and/or modify it under the terms of either the

More information

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Microsoft Office Training Skills 2010 Lesson 5 Working with pages, Tables, Shapes and Securing Documents Adding Page color Add color to the background of one or several pages in the document. 1. Click

More information

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at FIREFOX MENU REFERENCE This menu reference is available in a prettier format at http://support.mozilla.com/en-us/kb/menu+reference FILE New Window New Tab Open Location Open File Close (Window) Close Tab

More information

Kindle Create User Guide

Kindle Create User Guide Kindle Create User Guide v1.5 English Feb. 27, 2018 Copyright 2018 Amazon.com, Inc. or its affiliates. All rights reserved. Revision History Revision Number Revision Notes 1.5 Added section 1.1, Changing

More information

Spreadsheets Microsoft Office Button Ribbon

Spreadsheets Microsoft Office Button Ribbon Getting started with Excel 2007 you will notice that there are many similar features to previous versions. You will also notice that there are many new features that you ll be able to utilize. There are

More information

(Pixelsilk Training Manual) Your Guide to Pixelsilk Site Updates

(Pixelsilk Training Manual) Your Guide to Pixelsilk Site Updates 2525 NE Twin Knolls Drive, Suite 1 Bend, OR 97701 tel 541.388.4398 fax 541.385.4798 website www.smartz.com (Pixelsilk Training Manual) Your Guide to Pixelsilk Site Updates Thank you for choosing Pixelsilk

More information

Changes and Enhancements

Changes and Enhancements vii Changes and Enhancements Introduction This section describes the features of SAS System under OS/2 that have been implemented or enhanced since Release 6.12. Version 8 changes and enhancements are

More information

A Guided Tour of Doc-To-Help

A Guided Tour of Doc-To-Help A Guided Tour of Doc-To-Help ii Table of Contents Table of Contents...ii A Guided Tour of Doc-To-Help... 1 Converting Projects to Doc-To-Help 2005... 1 Using Microsoft Word... 10 Using HTML Source Documents...

More information

User Guide. FTR Reporter For more information, visit

User Guide. FTR Reporter For more information, visit FTR Reporter 5.7.1 For more information, visit www.fortherecord.com TABLE OF CONTENTS INTRODUCTION... 5 Overview... 5 About This Document... 5 GETTING STARTED... 6 Installation... 6 Starting Reporter...

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

3. What is the smallest and largest font size available in Font Size tool on formatting toolbar? A. 8 and 72 B. 8 and 68 C. 6 and 72 D.

3. What is the smallest and largest font size available in Font Size tool on formatting toolbar? A. 8 and 72 B. 8 and 68 C. 6 and 72 D. 1. The minimum number of rows and columns in MS Word document is A. 1 and 1 B. 2 and 1 C. 1 and 2 D. 2 and 2 2. How many columns can you insert in a word document in maximum? A. 40 B. 45 C. 50 D. 55 3.

More information

Beginning a presentation

Beginning a presentation L E S S O N 2 Beginning a presentation Suggested teaching time 40-50 minutes Lesson objectives To learn how to create and edit title and bullet slides, you will: a b c d Select slide types by using the

More information

StarTeam File Compare/Merge StarTeam File Compare/Merge Help

StarTeam File Compare/Merge StarTeam File Compare/Merge Help StarTeam File Compare/Merge 12.0 StarTeam File Compare/Merge Help Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2011 Micro Focus IP Development Limited. All Rights Reserved. Portions

More information

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002 University of Arizona Information Commons Training Page 1 of 21 WORD XP/2002 USER GUIDE Task- Formatting a Document in Word 2002 OBJECTIVES: At the end of this course students will have a basic understanding

More information

What is OU Campus? Log into OU Campus

What is OU Campus? Log into OU Campus OU Campus v10 Content Providers User Guide This document is designed to provide (level 5) Content Providers with basic information needed to do most tasks. Those needing additional information are encouraged

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTRODUCTION TO MICROSOFT EXCEL 2016 Introduction to Microsoft Excel 2016 (EXC2016.1 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn

More information

Table of Contents The University of Akron These materials were developed and are owned by The University of Akron. All rights reserved.

Table of Contents The University of Akron These materials were developed and are owned by The University of Akron. All rights reserved. Table of Contents COURSE OVERVIEW... 2 CONVENTIONS USED IN THIS MANUAL... 3 LESSON 1: SYMBOLS... 4 INSERTING SYMBOLS... 4 USING AUTOCORRECT TO INSERT SYMBOLS... 5 TURN ON AUTOCORRECT... 5 LESSON 2: SPECIAL

More information

Microsoft Excel Keyboard Shortcuts

Microsoft Excel Keyboard Shortcuts Microsoft Excel Keyboard Shortcuts Here is a complete list of keyboard shortcuts for Microsoft Excel. Most of the shortcuts will work on all Excel versions on Windows based computer. Data Processing Shortcuts

More information

Forms iq Designer Training

Forms iq Designer Training Forms iq Designer Training Copyright 2008 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, stored in a retrieval system, or translated into

More information

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button.

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button. Microsoft QUICK Word 2010 Source Getting Started The Word Window u v w x z Opening a Document 2. Select Open in the left pane. 3. In the Open dialog box, locate and select the file you want to open. 4.

More information

AgWare ClickFORMS 7.0 Introductory Tutorial

AgWare ClickFORMS 7.0 Introductory Tutorial AgWare ClickFORMS 7.0 Introductory Tutorial MAIN WINDOW If you have used Office 2007, our new layout will look familiar. Here is a screenshot of the new and improved AgWare ClickFORMS window: The Forms

More information

Introduction to Microsoft Office PowerPoint 2010

Introduction to Microsoft Office PowerPoint 2010 Introduction to Microsoft Office PowerPoint 2010 TABLE OF CONTENTS Open PowerPoint 2010... 1 About the Editing Screen... 1 Create a Title Slide... 6 Save Your Presentation... 6 Create a New Slide... 7

More information

Advanced Microsoft Word 2010

Advanced Microsoft Word 2010 Advanced Microsoft Word 2010 WordArt WordArt gives your letters special effects. You can change the formatting, direction, and texture of your text by adding WordArt. When you click the WordArt icon on

More information

Press the Plus + key to zoom in. Press the Minus - key to zoom out. Scroll the mouse wheel away from you to zoom in; towards you to zoom out.

Press the Plus + key to zoom in. Press the Minus - key to zoom out. Scroll the mouse wheel away from you to zoom in; towards you to zoom out. Navigate Around the Map Interactive maps provide many choices for displaying information, searching for more details, and moving around the map. Most navigation uses the mouse, but at times you may also

More information

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21 Table of Contents Chapter 1 Getting Started with HTML 5 1 Introduction to HTML 5... 2 New API... 2 New Structure... 3 New Markup Elements and Attributes... 3 New Form Elements and Attributes... 4 Geolocation...

More information

Office Wo Office W r o d r 2007 Revi i ng and R d Refifini ng a D Document

Office Wo Office W r o d r 2007 Revi i ng and R d Refifini ng a D Document Office Word 2007 Lab 2 Revising i and Refining i a Document In this lab, the student will learn more about editing documents They will learn to use many more of the formatting features included in Office

More information

Free Microsoft Office 2010 training from MedCerts. Course Outline

Free Microsoft Office 2010 training from MedCerts. Course Outline Free Microsoft Office 2010 training from MedCerts Course Outline Microsoft Office Word 2010: Basic Course Introduction Unit 01 - Getting Started Topic A: The Word Window The Word 2010 Window Demo - A-1:

More information

Word 2013 Beginning. Technology Integration Center

Word 2013 Beginning. Technology Integration Center Word 2013 Beginning Getting Started... 2 Quick Access Toolbar... 3 The Ribbon... 3 Help... 4 Compatibility Mode... 4 Document Views... 4 Navigating the Document... 5 Moving Around in the Document... 5

More information

Managing Your Schoolwires Web Site

Managing Your Schoolwires Web Site Managing Your Schoolwires Web Site 1. Sign in at the district web site. 2. Select the school where your teacher or organization s web site is located as shown below. 3. Select the Teacher or Departments

More information

BASIC MICROSOFT POWERPOINT

BASIC MICROSOFT POWERPOINT BASIC MICROSOFT POWERPOINT PART ONE PHONE: 504-838-1144 IT Training Team Jefferson Parish Library EMAIL: jpltrain@jplibrary.net In this class you will learn to: Launch, close, and interact with Microsoft

More information

Software Trajexia Studio USER MANUAL

Software Trajexia Studio USER MANUAL Cat No. I56E-EN-01 Software Trajexia Studio USER MANUAL Notice OMRON products are manufactured for use by a trained operator and only for the purposes described in this manual. The following conventions

More information

Computer Shortcuts. Files menu options in current program. Edits options in current program Universal Help in almost every Windows program.

Computer Shortcuts. Files menu options in current program. Edits options in current program Universal Help in almost every Windows program. www.bankjobszone.com Computer Shortcuts Shortcut keys Concept: Shortcuts keys help provide an easier and usually quicker method of navigating and using computer software programs. Shortcut keys are commonly

More information

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 EDITOR GUIDE Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 1 Button Functions: Button Function Display the page content as HTML. Save Preview

More information

Getting Started (1.8.7) 9/2/2009

Getting Started (1.8.7) 9/2/2009 2 Getting Started For the examples in this section, Microsoft Windows and Java will be used. However, much of the information applies to other operating systems and supported languages for which you have

More information

Creating Teacher Webpages on the New APS WordPress Site

Creating Teacher Webpages on the New APS WordPress Site Creating Teacher Webpages on the New APS WordPress Site TABLE OF CONTENTS INTRODUCTION 3 THE EDITING DASHBOARD 4 CREATING A NEW PAGE 5 EDITING YOUR PAGE 6 1. Page Title 7 2. Toolbar/ toolbar icons 7 3.

More information