Introduction to Dragon Voice Automation

Size: px
Start display at page:

Download "Introduction to Dragon Voice Automation"

Transcription

1 Introduction to Dragon Copyright Alan Cantor Thursday 12 July :30-5:30 p.m. RESNA 2018 Arlington, VA Alan Cantor Cantor Access Inc This handout is available in alternative formats

2 Contents Overview 1 Objectives... 1 Timetable Voice Command Basics 2 Relevance... 2 Why custom voice commands?... 2 Prerequisite knowledge and skills... 2 Four modes of the Command Browser... 3 "MyCommands Editor" Built-in Commands 5 A technique for discovering built-in commands... 5 How to interpret commands in the Command Browser Auto-Text Macros 6 Overview... 6 Three Kinds of Auto-Text Macros Step-by-Step Macros 7 Overview... 7 Examples of Step-by-Step Macros Advanced Scripting 8 Overview... 8 Advanced Scripting format... 8 Essential Advanced Scripting commands... 9 AppBringUp...9 SendKeys...9 SendSystemKeys and SendDragonKeys...10 Wait...10 HeardWord...10 SetMousePosition R, x, y...11 RememberPoint and DragtoPoint...11 Debugging and testing aids List Commands 12 Overview When to create list commands Simple lists Complex lists Using two or more lists Open-ended commands Further reading 17 Books (PDF) On-line forums and resources Copyright Alan Cantor i Introduction to Dragon

3 Overview Objectives 1. Voice command basics: Describe three situations in which custom voice commands are necessary; understand two prerequisite skills; and explain all parts of the "Command Browser" and "MyCommands Editor" user interfaces. 2. Built-in commands: Know one technique for discovering built-in commands with the Command Browser. 3. Text and Graphics macros: See the development of three "Auto-Text" macros for inserting unformatted text, formatted text, and images. 4. Step-by-Step macros: See the development of three "Step-by-Step" macros for opening applications, waiting, inserting keystrokes, and typing text. 5. Advanced Scripting macros: See the development of three "Advanced Scripting" macros that use "AppBringUp," "SendKeys," "Wait," "SetMousePosition," and "HeardWord." 6. List and open-ended commands: See the development of three "list commands" and one open-ended command. Timetable Time Objective 1:30 [5] Welcome and introductions 1:35 [30] 1. Voice commands basics 2:05 [10] 2. Discovering built-in commands 2:15 [20] 3. Text and Graphics (Auto-Text) macros 2:35 [50] 4. Step-by-Step macros 3:25 [15] Break 3:40 [60] 5. Advanced Scripting macros 4:40 [45] 6. List and opened-ended commands 5:25 [5] Wrap-up and evaluation 5:30 End of session Copyright Alan Cantor Introduction to Dragon

4 Relevance 1. Voice Command Basics The more reliant an individual is on speech recognition, the more they benefit from custom commands. The ability to script voice commands is an essential skill for assistive technologists who provide Dragon support and training. Custom commands improve access to standard applications, and make it easier and in some cases, make it possible to control non-standard applications by voice. Why custom voice commands? Save time, energy, and frustration Perform tasks that are difficult, time-consuming, or impossible with built-in commands Automate repetitive processes Make voice access more reliable Make it easier to remember voice commands Sculpt commands to better fit the physical and cognitive needs of an individual Prerequisite knowledge and skills Good knowledge of built-in Dragon commands Ability to drive Windows from the keyboard Good understanding of the applications you want to voice-enable. Ability to discover hotkeys for the applications you want to voice-enable. Copyright Alan Cantor Introduction to Dragon

5 The "Command Browser" Four modes of the Command Browser Mode Commands organized by... Use to... Browse Context: e.g., "Microsoft Word 2016" Search for commands Script Manage Grammar: e.g., "Microsoft Word for Windows" Group: Usually user defined Create, edit, delete, and preview commands Import, export, delete, and change properties of commands MyCommands All groups Edit groups of commands Copyright Alan Cantor Introduction to Dragon

6 "MyCommands Editor" MyCommand Name Description Group Availability Command Type Name Editor... Script Copyright Alan Cantor Introduction to Dragon

7 2. Built-in Commands A technique for discovering built-in commands Comprehensive lists of all Dragon commands do not exist. There are too many commands hundreds of thousands, maybe millions. You may be able to guess some, but most commands must be discovered: 1. Open the "Command Browser" 2. Click "Browse." 3. Click "Context" and choose an application from the drop-down list. 4. Click "Keyword Filter." 5. Choose one (or more) keywords you think might be part of the command name. 6. Click "Done." 7. Choose a promising looking command in the right pane. 8. Choose a command in the right pane, and repeatedly click "Ellipsis" until "Ellipsis" grays out. (You might need to click many times.) 9. Click "Show All." This process is not intuitive. Trial-and-error experimentation will lead you to understand when (if ever) to click "Optional," "Or," and "Back to List." How to interpret commands in the Command Browser Many commands are cryptic-looking. For example: Clear [the] formats from ( ( that this it ) [the] selection... The ellipsis... means that part of the command name is cut off. Click "Ellipsis" to expand the view. Words in square brackets are optional. For example, you can say "Clear the formats..." or "Clear formats..." The vertical line means "OR." When different words appear between parentheses, choose one of the listed words. For example, you can say "Clear formats from that" OR "Clear formats from this" OR "Clear formats from it." The three are equivalent. Copyright Alan Cantor Introduction to Dragon

8 Overview 3. Auto-Text Macros Auto-Text macros are also called "Text and Graphics" macros. Auto-Text macros insert boilerplate text and/or graphics. You can insert three kinds of things: 1. Unformatted text 2. Formatted text 3. Bitmap images Three Kinds of Auto-Text Macros To insert... MyCommand Name What it inserts... Unformatted text My Name and Degrees S. Smith B.A., M.Sc., Ph.D. My Telephone Number Formatted text My Contact Info 123 Main Street Arlington Bitmap image Big Lion Copyright Alan Cantor Introduction to Dragon

9 Overview 4. Step-by-Step Macros This is the easiest scripting technique to: Send keystrokes and key sequences Access menus Open applications Wait for actions Control the microphone Examples of Step-by-Step Macros MyCommand Name What it does Double Underline Sends keystrokes in Word to double underline Get Rid of Stars Take a Letter Save in My Documents Deletes all asterisks in a document Opens Microsoft Word Saves a document in a particular folder Copyright Alan Cantor Introduction to Dragon

10 5. Advanced Scripting Overview "Advanced Scripting" is a technique for developing versatile and powerful commands. You do not need to be a programmer to take advantage of Advanced Scripting, as many tasks can be voice-enabled using only "HeardWord," "SendKeys," and "Wait." There are Advanced Scripting equivalents to the Step-by-Step commands introduced in the previous section. Advanced Scripting format All Advanced Scripting commands share this format: Sub Main Step 1 Step 2 etc. End Sub Sub Main means "the voice command start here." Step 1, Step 2, etc. are individual commands that make up the voice command. End Sub means "The voice command ends here." Copyright Alan Cantor Introduction to Dragon

11 Essential Advanced Scripting commands AppBringUp "AppBringUp" is similar to the Step-by-Step "Open (application)." The following command launches a calculator program: AppBringUp "c:\windows\system32\calc.exe" SendKeys To output keystrokes, use "SendKeys": SendKeys "Sandy S. Smith", True ' Type the name SendKeys "{Enter}", True ' Press Enter key SendKeys "123 Main Street", True ' Type the address "True" ensures all keystrokes are processed before proceeding to the next instruction. {Enter} is an example of a "reserved word." These "words" are equivalent to pressing certain keys. The meaning of most is obvious: SendKeys "{Backspace}" SendKeys "{Tab}" SendKeys "{Left}" SendKeys "{F1}" ' Press the "Backspace" key ' Press the "Tab" key ' Press the "Left arrow" key ' Press the "F1" key Other reserved words are less intuitive, but frequently needed: + = Shift ^ = Ctrl % = Alt Examples with Shift, Ctrl, and Alt: SendKeys "%f" SendKeys "^c" SendKeys "+{End}" ' Activate the file menu = Alt + F ' Copy to the clipboard = Ctrl + C ' Select to end of line = Shift + End To repeat a reserved word, place a repeat value before the closing brace: SendKeys "{Down 10}" ' Move cursor down 10 lines Copyright Alan Cantor Introduction to Dragon

12 SendSystemKeys and SendDragonKeys In some contexts, SendKeys outputs too quickly, or fails. There are two alternatives: SendSystemKeys and SendDragonKeys. It's hard to predict which of the three will work, so use trial-and-error. Reserved words are different than for SendKeys: Here are three ways to output Alt + F: SendKeys "%f", True SendSystemKeys "{Alt+f}" SendDragonKeys "{Alt+f}" Wait Macros execute quickly. Sometimes, you must slow down a script to allow time for a task to finish. To slow down a macro, insert Wait commands: AppBringUp "c:\windows\system32\calc.exe"' Launch the calculator Wait 1 ' Wait 1 second SendKeys "50" ' Type "50" HeardWord If you know a built-in Dragon command, mimic it with "HeardWord." For example: Built-in Dragon command "go to bottom" "select next four words" "click Save" "press tab" HeardWord equivalent HeardWord "go", "to", "bottom" HeardWord "select", "next", "four", "words" HeardWord "click", "Save" HeardWord "press", "tab" Notes about HeardWord: HeardWord is picky about case. You can usually discover the correct case by saying the command and watching the "Results Box" or checking the "Recognition History." Some HeardWord commands includes backslashes, hyphens, or underscores. The spellings change from version to version: Copyright Alan Cantor Introduction to Dragon

13 Built-in Dragon command "no caps that" "cap that" "all caps that" "go to sleep" HeardWord equivalent HeardWord "\No-Caps", "that" (Version 13) HeardWord "\no-caps", "that" (Version 15) HeardWord "\Cap", "that" (Version 13) HeardWord "\cap", "that" (Version 15)??? (Version 13) HeardWord "\all-caps", "that" (Version 15) HeardWord "go_to_sleep" (Version 13) HeardWord "go to sleep" (Version 15) SetMousePosition R, x, y Moves the mouse to coordinates (x, y) relative to an origin: R = 0 = Relative to the top left corner of the screen R = 1 = Relative to the top left corner of the active window R = 2 = Relative to the current pointer position R = 5 = Relative to the top left corner of the window interior SetMousePosition 0, 20, 30 SetMousePosition 1, 40, 50 SetMousePosition 2, 0, 1 SetMousePosition 5, 0, 0 ' Move pointer to (20, 30) relative to screen ' Move pointer to (40, 50) relative to window ' Move pointer one pixel down ' Move pointer to top-left of window interior ButtonClick B, n B = 1 = Left button B = 2 = Right button B = 4 = Middle button ButtonClick 1, 2 ButtonClick, 2, 1 n = 1 = Single click n = 2 = Double click ' Double left click ' Single right click RememberPoint and DragtoPoint Use these commands to simulate dragging the mouse. Debugging and testing aids Press F5 to run an entire script, and F8 to run a script one line at a time. Copyright Alan Cantor Introduction to Dragon

14 Overview 6. List Commands Lists make it possible to perform dozens (or millions!) of related actions with one command. "Auto-Text" and "Advanced Scripting" both support list commands. When to create list commands When a group of commands do almost exactly the same thing, and The command names vary by one or two (and maybe more) words. Here are three good candidates for list commands: What you say... Project Number 1 Project Number 2 Project Number 99 etc. What the command outputs... P P P John's phone number Mary's phone number extension 1234 My phone number etc. Section 1 Paragraph 40 s(1) p 40 Section 9 Paragraph 99 s(9) p 99 Section 22 Paragraph 2 s(22) p 2 etc. Copyright Alan Cantor Introduction to Dragon

15 Simple lists A simple list consists of words or phrases that Dragon recognizes easily. For example, <acne-stage> is a simple list with three items: mild moderate severe MyCommand Name: Acne <acne-stage> When a command contains one simple list, the variable associated with it is ListVar1. Sub Main SendKeys "The patient presented with a " SendKeys ListVar1 ' ListVar1 = mild, moderate, or severe SendKeys " case of acne on both sides of the face." End Sub or: Sub Main Let Stage = ListVar1 SendKeys "The patient presented with a " SendKeys Stage ' mild, moderate, or severe SendKeys " case of acne on both sides of the face." End Sub or: Sub Main Let Stage = ListVar1 SendKeys "The patient presented with a " & Stage & _ " case of acne on both sides of the face." End Sub Copyright Alan Cantor Introduction to Dragon

16 Complex lists A complex list consists of words (or phrases) that Dragon CANNOT easily recognize, and are hard to pronounce and/or remember. Each item consists of a written form and an easy-to-pronounce spoken form. The two parts are separated by a backslash. For example, the list <parts> consists of four items, one per line. Each line includes a hard-to-dictate part number, a backslash (which serves as a separator), and an easy-tosay number. A-1-A\1 B-2\2 C-3000\3 D-4-D\4 When a command contains a complex list, the variable associated with it is always ListVar1. The command must include instructions for extracting the written form. You do not need to understand the code to use it! Mid(ListVar1, 1, Instr(ListVar1, "\")-1) MyCommand Name: Part Number <parts> Sub Main SendKeys Mid(ListVar1, 1, Instr(ListVar1, "\")-1) End Sub or: Sub Main Let x = Mid(ListVar1, 1, Instr(ListVar1, "\")-1) SendKeys x End Sub For example, when you say "Part Number 3," Dragon will output "C-3000." Copyright Alan Cantor Introduction to Dragon

17 Using two or more lists You can include several lists in a command. This example outputs dates in this format: 01_JAN_2018. The command uses two complex lists and one simple list: <DD> <MMM> <YYYY > 01\1 02\ \31 JAN\January FEB\February... DEC\December Simple or complex? Simple or complex? Simple or complex? MyCommand Name: Insert <DD><MMM><YYYY> The variable associated with list <DD> is ListVar1 The variable associated with list <MMM> is ListVar2 The variable associated with list <YYYY> is ListVar3 Sub Main SendKeys Mid(ListVar1, 1, Instr(ListVar1, "\")-1) ' Insert day (complex list) SendKeys "_" SendKeys Mid(ListVar2, 1, Instr(ListVar2, "\")-1) ' Insert month (complex list) SendKeys "_" SendKeys ListVar3 ' Insert year (simple list) End Sub Copyright Alan Cantor Introduction to Dragon

18 Open-ended commands Beginning with NaturallySpeaking 13, you can end a custom command with a list called <dictation>, which is any word or phrase in Dragon's vocabulary. MyCommand Name: Save File As <dictation> Sub Main SendKeys "^f" Wait 0.5 SendKeys "a" Wait 0.5 SendKeys ListVar1 ' SendKeys "{Enter}" End Sub ' Press Alt + F to activate "File" menu ' Press A to activate "Save As" ' Insert dictated name for simple list <dictation> ' Save the file (commented out here) Copyright Alan Cantor Introduction to Dragon

19 Further reading Books (PDF) "Scripting for Dragon NaturallySpeaking 11" by Larry V. Allen: On-line forums and resources Keyboard Access FAQ (Alan Cantor): Keyboard Shortcuts (Microsoft): KnowBrainer Forums: Nuance Dragon Scripting Quick Reference: Copyright Alan Cantor Introduction to Dragon

Viva Voce Speech Recognition Solutions

Viva Voce Speech Recognition Solutions Viva Voce Speech Recognition Solutions Creating macros (custom commands) for Dragon Professional Individual V15 This manual is intended for use as an aid to support face-to-face training. You might not

More information

Scripting for Dragon NaturallySpeaking 9

Scripting for Dragon NaturallySpeaking 9 Scripting for Dragon NaturallySpeaking 9 A Guide to Advanced Scripting for Dragon NaturallySpeaking 9.x Larry V. Allen Scripting for Dragon NaturallySpeaking 9 Copyright 2006 by Softnet Systems, Inc. All

More information

set in Options). Returns the cursor to its position prior to the Correct command.

set in Options). Returns the cursor to its position prior to the Correct command. Dragon Commands Summary Dragon Productivity Commands Relative to Dragon for Windows v14 or higher Dictation success with Dragon depends on just a few commands that provide about 95% of the functionality

More information

2006 by Softnet Systems, Inc. Page 1 of 9

2006 by Softnet Systems, Inc. Page 1 of 9 2006 by Softnet Systems, Inc. Page 1 of 9 Inserting Text Via Vocabulary Editor This is an easy technique well suited for situations where the text to be inserted is short and frequently used. You may think

More information

! can type any amount of text with one voice command, up to 16,000 characters.

! can type any amount of text with one voice command, up to 16,000 characters. 11 Macros Macros are the more powerful cousin of the shorthands described in Chapter 10. While shorthands are limited to typing short passages of text, macros can type passages as long as you like and

More information

Step-by. A Very Warm Welcome to the Exciting World of Computers. Let s get Started It s easy with my Step- Instructions

Step-by. A Very Warm Welcome to the Exciting World of Computers. Let s get Started It s easy with my Step- Instructions A Very Warm Welcome to the Exciting World of Computers Let s get Started It s easy with my Step- by-step Instructions This lesson is all about getting to know your Main Menu Bar at the top of your screen.

More information

SPEECH RECOGNITION COMMON COMMANDS

SPEECH RECOGNITION COMMON COMMANDS SPEECH RECOGNITION COMMON COMMANDS FREQUENTLY USED COMMANDS The table below shows some of the most commonly used commands in Windows Speech Recognition. The words in italics indicate that many different

More information

VerbalBasic User Manual & Training Guide

VerbalBasic User Manual & Training Guide VerbalBasic User Manual & Training Guide Table of Contents (use hyperlinks) Preliminary Hierarchy Simple Global Text Macro Example (w/bookmarks) Simple Global Text Macro Example (w/formatting) Macro Tools

More information

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Lesson 3 - Creating Documents with MS word 2010 Introduction to Word Processing MS-Word 2010 is word processing application that is used create and edit documents such as: Books, letters, reports, newsletters,

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

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

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

Word Introduction SBCUSD IT Training Program. Word Introduction. Page Setup, Paragraph Attributes, Printing and More.

Word Introduction SBCUSD IT Training Program. Word Introduction. Page Setup, Paragraph Attributes, Printing and More. SBCUSD IT Training Program Word Introduction Page Setup, Paragraph Attributes, Printing and More Revised 2/15/2018 SBCUSD IT Training Page 1 CONTENTS Cursor Movement... 4 Selecting Text... 5 Font/Typeset

More information

Index COPYRIGHTED MATERIAL

Index COPYRIGHTED MATERIAL A accent, 28 accessibility, 13 accuracy how this book is organized, 5 improvement, 33 34 NaturallySpeaking, 9 troubleshooting, 319 version 12 enhancements, 14 Accuracy Center. See also training adjusting

More information

WORD 2010 TIP SHEET GLOSSARY

WORD 2010 TIP SHEET GLOSSARY GLOSSARY Clipart this term refers to art that is actually a part of the Word package. Clipart does not usually refer to photographs. It is thematic graphic content that is used to spice up Word documents

More information

With ClaroIdeas you can quickly and easily create idea maps using a combination of words, symbols and pictures.

With ClaroIdeas you can quickly and easily create idea maps using a combination of words, symbols and pictures. Welcome to ClaroIdeas ClaroIdeas is a fresh tool to support the creation and editing of concept maps or idea maps using visual and audio components. It has been specifically developed to support people

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

Read&Write 10 GOLD Training Guide

Read&Write 10 GOLD Training Guide . Read&Write 10 GOLD Training Guide Revised 10 th Jan 2011 Contents 1. Introduction... 1 2. Getting started... 2 Exercise 1 Logging into the system... 2 Exercise 2 Understanding the toolbar... 3 Exercise

More information

NaturallySpeaking Commands Summary

NaturallySpeaking Commands Summary NaturallySpeaking Commands Summary Dictation success with NaturallySpeaking depends on just a few commands that provide 95% of the functionality needed to complete most dictation tasks the essential commands

More information

Lesson 2 Quick Tour and Features

Lesson 2 Quick Tour and Features Lesson 2 Quick Tour and Features Objectives Students will format a document page. Students will use a spell-checker. Students will copy, cut, and paste text. Students will adjust paragraph indentations.

More information

Read&Write 9 GOLD Training Guide

Read&Write 9 GOLD Training Guide . Read&Write 9 GOLD Training Guide Revised 29 th Jan 2009 Contents 1. Introduction... 1 2. Getting started... 2 Exercise 1 Logging into the system... 2 Exercise 2 Understanding the toolbar... 2 Exercise

More information

Computer Applications Show and Tell

Computer Applications Show and Tell Computer Applications Show and Tell Coordinator: Andy Lin Center for Applied Rehabilitation Technology Downey, California alin@dhs.lacounty.gov Accommodation for Volunteer with Traumatic Brain Injury Jamie

More information

The WordRead Toolbar lets you use WordRead's powerful features at any time without getting in your way.

The WordRead Toolbar lets you use WordRead's powerful features at any time without getting in your way. Welcome to WordRead Welcome to WordRead. WordRead is designed to make it easier for you to do things with your computer by making it speak and making things easier to read. It is closely integrated with

More information

Contents. Launching Word

Contents. Launching Word Using Microsoft Office 2007 Introduction to Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Winter 2009 Contents Launching Word 2007... 3 Working with

More information

The ViVo Mouse Versions: Standard & Professional Installation Guide

The ViVo Mouse Versions: Standard & Professional Installation Guide Versions: Standard & Professional Installation Guide Copyright 2010-2014 Vortant Technologies, LLC Table of Contents Installation Guide - ViVo Standard & Professional... 3 Contact Information... 3 Getting

More information

Start Dragon NaturallySpeaking from the Windows Start Menu

Start Dragon NaturallySpeaking from the Windows Start Menu Starting to Dictate Start Dragon NaturallySpeaking from the Windows Start Menu If there is more than one Dragon NaturallySpeaking user on the computer, the Open User dialog box will appear and then select

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

DRAGON FOR AMBULATORY CARE PROVIDERS

DRAGON FOR AMBULATORY CARE PROVIDERS DRAGON FOR AMBULATORY CARE PROVIDERS Presented by the IS Training Department, Children s Hospital of The King s Daughters August 2011 INTRODUCTION... 1 OBJECTIVES... 1 DRAGON SETUP... 2 COMPONENTS OF

More information

Opening Microsoft Word. 1. Double click the Word 2016 icon on the desktop to launch word.

Opening Microsoft Word. 1. Double click the Word 2016 icon on the desktop to launch word. Intro to Microsoft Word 2016 Class Description: This class will provide an introduction to the word processing program Microsoft Word 2016. Learn how to create a simple document, edit and format text,

More information

Windows VISTA Built-In Accessibility. Quick Start Guide

Windows VISTA Built-In Accessibility. Quick Start Guide Windows VISTA Built-In Accessibility Quick Start Guide Overview Vista Built-In Accessibility Options Vista Ease of Access Center Magnifier Narrator On-Screen Keyboard Voice Recognition To Use How it is

More information

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

More information

Microsoft PowerPoint 2013 Beginning

Microsoft PowerPoint 2013 Beginning Microsoft PowerPoint 2013 Beginning PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 File Tab... 3 Quick Access Toolbar... 3 The Ribbon... 4 Keyboard Shortcuts...

More information

Introduction to MS Word XP 2002: An Overview

Introduction to MS Word XP 2002: An Overview Introduction to MS Word XP 2002: An Overview Sources Used: http://www.fgcu.edu/support/office2000/word/files.html Florida Gulf Coast University Technology Skills Orientation Word 2000 Tutorial The Computer

More information

Indispensable tips for Word users

Indispensable tips for Word users Indispensable tips for Word users No matter how long you've been using Microsoft Word, you can always learn new techniques to help you work faster and smarter. Here are some of TechRepublic's favorite

More information

Introduction to Microsoft Office 2016: Word

Introduction to Microsoft Office 2016: Word Introduction to Microsoft Office 2016: Word Last Updated: September 2018 Cost: $2.00 Microsoft Word is a word processing software. You can use it to type letters, reports, and other documents. This class

More information

Assistive Technology Training Software Guide

Assistive Technology Training Software Guide Assistive Technology Training Software Guide 1 Contents 1. Getting Started 1.1 Creating a voice profile 4 1.2 The Dragon toolbar and Learning Centre 6 1.3 Turning the microphone on and off 7 2. Using Dragon

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

Computer Shortcut Keys

Computer Shortcut Keys Powered By Computer Shortcut Keys Let s kickstart the list with the most common shortcuts that you ll often use. F1 [Display Help] F2 [Rename the selected item] F3 [Search for a file or folder] F4 [Display

More information

TypeIt ReadIt. Windows v 1.7

TypeIt ReadIt. Windows v 1.7 TypeIt ReadIt Windows v 1.7 1 Table of Contents Page Topic 3 TypeIt ReadIt 4 What s New With Version 1.7 5 System Requirements 6 User Interface 11 Keyboard Shortcuts 12 Printing 2 TypeIt ReadIt TypeIt

More information

Lecture- 5. Introduction to Microsoft Excel

Lecture- 5. Introduction to Microsoft Excel Lecture- 5 Introduction to Microsoft Excel The Microsoft Excel Window Microsoft Excel is an electronic spreadsheet. You can use it to organize your data into rows and columns. You can also use it to perform

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

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

Setting Accessibility Options in Windows 7

Setting Accessibility Options in Windows 7 Setting Accessibility Options in Windows 7 Windows features a number of different options to make it easier for people who are differently-abled to use a computer. Opening the Ease of Access Center The

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

TypeIt ReadIt. Macintosh v 1.7

TypeIt ReadIt. Macintosh v 1.7 TypeIt ReadIt Macintosh v 1.7 1 Table of Contents Page Topic 3 TypeIt ReadIt 4 What s New With Version 1.7 5 System Requirements 6 User Interface 11 Keyboard Shortcuts 12 Printing 2 TypeIt ReadIt TypeIt

More information

Accessibility Aids in Microsoft Word 2010

Accessibility Aids in Microsoft Word 2010 Accessibility Aids in Microsoft Word 2010 This document explains how to use many of Microsoft Word's accessibility features in order to improve productivity. It is assumed all users have a working knowledge

More information

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure.

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure. Introduction to SymWord SymWord is a simple to use, talking, symbol-word processor. It has the basic functionality of a word processor. SymWord can also be configured to produce speech and/or display text

More information

Lesson 12 Getting Started with Word Essentials

Lesson 12 Getting Started with Word Essentials Getting Started with Word Essentials Computer Literacy BASICS: A Comprehensive Guide to IC 3, 4 th Edition 1 Objectives Create a new document. Change Word settings. Enter text in a document. Show nonprinting

More information

Speech Recognition, The process of taking spoken word as an input to a computer

Speech Recognition, The process of taking spoken word as an input to a computer Speech Recognition, The process of taking spoken word as an input to a computer program (Baumann) Have you ever found yourself yelling at your computer, wishing you could make it understand what you want

More information

Correcting Grammar as You Type. 1. Right-click the text marked with the blue, wavy underline. 2. Click the desired option on the shortcut menu.

Correcting Grammar as You Type. 1. Right-click the text marked with the blue, wavy underline. 2. Click the desired option on the shortcut menu. PROCEDURES LESSON 11: CHECKING SPELLING AND GRAMMAR Selecting Spelling and Grammar Options 2 Click Options 3 In the Word Options dialog box, click Proofing 4 Check options as necessary under the When correcting

More information

Dragon Naturally Speaking. Guide. Start

Dragon Naturally Speaking. Guide. Start Dragon Naturally Speaking Guide Start The Voice Toolbar Profile Creating Benefits a You can to create a voice profile identify using a errors number of different devices including: Improves word recognition

More information

Microsoft Word: Steps To Success (The Bare Essentials)

Microsoft Word: Steps To Success (The Bare Essentials) Microsoft Word: Steps To Success (The Bare Essentials) Workbook by Joyce Kirst 2005 Microsoft Word: Step to Success (The Bare Essentials) Page Contents 1 Starting Word 2 Save 3 Exit 5 Toolbars, Alignment,

More information

Microsoft Office 2010 consists of five core programs: Word, Excel,

Microsoft Office 2010 consists of five core programs: Word, Excel, Chapter 1 Introducing Microsoft Office 2010 In This Chapter Starting an Office 2010 program Learning the Microsoft Office Backstage View Using the Quick Access toolbar Learning the Ribbon Customizing an

More information

The first time you open Word

The first time you open Word Microsoft Word 2010 The first time you open Word When you open Word, you see two things, or main parts: The ribbon, which sits above the document, and includes a set of buttons and commands that you use

More information

MICROSOFT WORD 2010 BASICS

MICROSOFT WORD 2010 BASICS MICROSOFT WORD 2010 BASICS Word 2010 is a word processing program that allows you to create various types of documents such as letters, papers, flyers, and faxes. The Ribbon contains all of the commands

More information

Rio Hondo Prep Computer Applications Class

Rio Hondo Prep Computer Applications Class Welcome to Computer Applications class! This class will help you to learn how to utilize the most used business and academic software. Currently, this includes the latest Microsoft Office 360 programs

More information

Using Microsoft Word. Text Editing

Using Microsoft Word. Text Editing Using Microsoft Word A word processor is all about working with large amounts of text, so learning the basics of text editing is essential to being able to make the most of the program. The first thing

More information

Intro to Microsoft Word

Intro to Microsoft Word Intro to Microsoft Word A word processor is a computer program used to create and print text documents that might otherwise be prepared on a typewriter. The key advantage of a word processor is its ability

More information

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs Course Description Word - Basics Word is a powerful word processing software package that will increase the productivity of any individual or corporation. It is ranked as one of the best word processors.

More information

Microsoft Word Basic Editing. Lesson , John Wiley & Sons, Inc. Microsoft Official Academic Course, Microsoft Word

Microsoft Word Basic Editing. Lesson , John Wiley & Sons, Inc. Microsoft Official Academic Course, Microsoft Word Microsoft Word 2013 Lesson 2 Basic Editing 2014, John Wiley & Sons, Inc. Microsoft Official Academic Course, Microsoft Word 2013 1 Objectives 2014, John Wiley & Sons, Inc. Microsoft Official Academic Course,

More information

In so many ways summary

In so many ways summary In so many ways summary Many of Word s functions can be activated in a variety of different ways. Often you can use the menu, a tool on the toolbar or a shortcut key to achieve the same result. Rather

More information

Read&Write 8.1 Gold Training Guide

Read&Write 8.1 Gold Training Guide Read&Write 8.1 Gold Training Guide Contents 1. Introduction... 1 2. Getting started... 2 Exercise 1 Logging into the system... 2 Exercise 2 Understanding the toolbar... 2 Exercise 3 Positioning the toolbar...

More information

Open Book Format.docx. Headers and Footers. Microsoft Word Part 3 Office 2016

Open Book Format.docx. Headers and Footers. Microsoft Word Part 3 Office 2016 Microsoft Word Part 3 Office 2016 Open Book Format.docx Headers and Footers If your document has a page number, you already have a header or footer (and can double click on it to open it). If you did not

More information

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities.

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities. Introduction to 9.0 Introduction to 9.0 Getting Started Guide Powering collaborative online communities. TABLE OF CONTENTS About FirstClass...3 Connecting to your FirstClass server...3 FirstClass window

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

Low Vision Technology

Low Vision Technology Low Vision Technology Student Name: Directions: 1. If this assessment is appropriate for this student, use it for planning programming and reporting student performance at least four times. 2. Date the

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

Microsoft PowerPoint 2007 Beginning

Microsoft PowerPoint 2007 Beginning Microsoft PowerPoint 2007 Beginning Educational Technology Center PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 Microsoft Office Button... 3 Quick Access

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

Navigation Bar Icons

Navigation Bar Icons Outlook 2016 Main Screen Navigation Bar Icons Mail Calendar Contains mail-related folders like your Inbox, Sent Items and Search Folders. Use the Favorite Folders at the top of the pane for easy access

More information

LESSON ONE AND TWO TOPIC: HOW TO USE MICROSOFT WORD. : Putu Putra Astawa, S.Kom.,M.Kom

LESSON ONE AND TWO TOPIC: HOW TO USE MICROSOFT WORD. : Putu Putra Astawa, S.Kom.,M.Kom LESSON ONE AND TWO TOPIC: HOW TO USE MICROSOFT WORD Author : Putu Putra Astawa, S.Kom.,M.Kom Date : June 09, 2014 and June 16, 2014 Time : 08.30-10.45 Am. Materials Needed : Computer, Work Sheet Overview

More information

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 Introduction to Microsoft Word 2010 Microsoft Word is a word processing program you can use to write letters, resumes, reports, and more. Anything you can create with a typewriter, you can create with

More information

Optimizing ImmuNet. In this chapter: Optimizing Browser Performance Running Reports with Adobe Acrobat Reader Efficient Screen Navigation

Optimizing ImmuNet. In this chapter: Optimizing Browser Performance Running Reports with Adobe Acrobat Reader Efficient Screen Navigation Optimizing ImmuNet In this chapter: Optimizing Browser Performance Running Reports with Adobe Acrobat Reader Efficient Screen Navigation Optimizing Browser Performance Unless instructed to do otherwise,

More information

Subject: 7 th Grade Computer Grade: 7th Mr. Holmes Unit Lesson Layer Duration

Subject: 7 th Grade Computer Grade: 7th Mr. Holmes Unit Lesson Layer Duration Subject: 7 th Grade Computer Grade: 7th Mr. Holmes Unit Lesson Layer Duration Unit 1 Word PROJECT 3: TOURING Applied (do) 2/12/12-2/22/12 Processing SHAKESPEARE S GLOBE Essential Questions What do you

More information

Lesson 4 - Creating a Text Document Using WordPad

Lesson 4 - Creating a Text Document Using WordPad Lesson 4 - Creating a Text Document Using WordPad OBJECTIVES: To learn the basics of word processing programs and to create a document in WordPad from Microsoft Windows. A word processing program is the

More information

Microsoft Word (97, 98, 2000) Word Processing Instructions

Microsoft Word (97, 98, 2000) Word Processing Instructions Microsoft Word (97, 98, 2000) Word Processing Instructions Managing Toolbars Click on View. Select Toolbars. Click to select Standard, Formatting, and Drawing. Formatting Text 1. Once text is typed in,

More information

Introduction to Microsoft Publisher

Introduction to Microsoft Publisher Introduction to Microsoft Publisher Day One Agenda: Introduction Templates Layout Inserting and Formatting Text Inserting and Formatting Pictures Practice, Questions Day Two Agenda: Review Day One Tables

More information

Microsoft Word Introduction

Microsoft Word Introduction Academic Computing Services www.ku.edu/acs Abstract: This document introduces users to basic Microsoft Word 2000 tasks, such as creating a new document, formatting that document, using the toolbars, setting

More information

MODULE III: NAVIGATING AND FORMULAS

MODULE III: NAVIGATING AND FORMULAS MODULE III: NAVIGATING AND FORMULAS Copyright 2012, National Seminars Training Navigating and Formulas Using Grouped Worksheets When multiple worksheets are selected, the worksheets are grouped. If you

More information

Microsoft Word 2010 Part 1: Introduction to Word

Microsoft Word 2010 Part 1: Introduction to Word CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Word 2010 Part 1: Introduction to Word Summer 2011, Version 1.0 Table of Contents Introduction...3 Starting the Program...3

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Touring the Mac. S e s s i o n 3 : U S E A N APPLICATION

Touring the Mac. S e s s i o n 3 : U S E A N APPLICATION Touring the Mac S e s s i o n 3 : U S E A N APPLICATION Touring_the_Mac_Session-3_Jan-25-2011 1 This session covers opening an application and typing a document using the TextEdit application which is

More information

Understanding Word Processing

Understanding Word Processing Understanding Word Processing 3.0 Introduction In this chapter you are going to learn how to create a simple memo or note or a complex and complicated multi column business document using word processing

More information

Windows 10: FAQs. The Start Menu. Cortana

Windows 10: FAQs. The Start Menu. Cortana Windows 10: FAQs Click on a topic below e.g. File Management to find answers to common questions about Windows 10. Alternatively, you can search this document by pressing CTRL + F and typing a keyword.

More information

Microsoft Office 2000 & Microsoft Word 2000 Page 1. ***** Help Options ***** To access [? ] quickly & for specific use then

Microsoft Office 2000 & Microsoft Word 2000 Page 1. ***** Help Options ***** To access [? ] quickly & for specific use then Microsoft Office 2000 & Microsoft Word 2000 Page 1 ***** Help Options ***** Microsoft Help: Options and Search [ F1 ] Fastest way to get to Office Assistant and MS Office Help! ESC to Exit File > Help

More information

Learning Worksheet Fundamentals

Learning Worksheet Fundamentals 1.1 LESSON 1 Learning Worksheet Fundamentals After completing this lesson, you will be able to: Create a workbook. Create a workbook from a template. Understand Microsoft Excel window elements. Select

More information

Microsoft Word Lecture 9. By lec. (Eng.) Hind Basil University of technology Department of Materials Engineering

Microsoft Word Lecture 9. By lec. (Eng.) Hind Basil University of technology Department of Materials Engineering Microsoft Word Lecture 9 By lec. (Eng.) Hind Basil University of technology Department of Materials Engineering Microsoft Word (often called Word) is graphical word processing program that users can type

More information

Home tab where most formatting options are accessed. After the Clipboard group launcher is depressed, the Clipboard pane appears.

Home tab where most formatting options are accessed. After the Clipboard group launcher is depressed, the Clipboard pane appears. Lesson 3 Home tab where most formatting options are accessed Clipboard group. Notice the Launcher After the Clipboard group launcher is depressed, the Clipboard pane appears. Note: 24 items can be stored

More information

I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS...

I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS... EXCEL 2010 BASICS Microsoft Excel I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS... 6 The Mouse... 6 What Are Worksheets?... 6 What is a Workbook?...

More information

Introduction. The Google Documents interface When you create a document in Google Documents, the interface for Documents will appear.

Introduction. The Google Documents interface When you create a document in Google Documents, the interface for Documents will appear. Introduction When working with a word processing application like Google Documents, it is important to be comfortable with the document interface and to know how to perform basic tasks with text. In this

More information

MICROSOFT EXCEL KEYBOARD SHORCUTS

MICROSOFT EXCEL KEYBOARD SHORCUTS MICROSOFT EXCEL KEYBOARD SHORCUTS F1 Displays the Office Assistant or (Help > Microsoft Excel Help) F2 Edits the active cell, putting the cursor at the end F3 Displays the (Insert > Name > Paste) dialog

More information

Excel Level One. Introduction. Contents. Starting Excel. Reviewing the Excel Screen

Excel Level One. Introduction. Contents. Starting Excel. Reviewing the Excel Screen Introduction Excel Level One This workshop introduces you to introductory Excel. You will learn about the menus, create a worksheet, enter values, edit a worksheet, and spell check. Contents Introduction

More information

Fluency for Transcription Editor 7.6 Issues, Workarounds and Tips. Newly Added Items

Fluency for Transcription Editor 7.6 Issues, Workarounds and Tips. Newly Added Items Fluency for Transcription Editor 7.6 Issues, Workarounds and Tips Newly Added Items FFT Editor Function Explanation Workaround / Tip ADT: Custom Search with Date of Birth Document Checks: CC List Document

More information

Quick Start Guide MAC Operating System Built-In Accessibility

Quick Start Guide MAC Operating System Built-In Accessibility Quick Start Guide MAC Operating System Built-In Accessibility Overview The MAC Operating System X has many helpful universal access built-in options for users of varying abilities. In this quickstart,

More information

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item Tips and Tricks Recorder Actions Library XPath Syntax Hotkeys Windows Hotkeys General Keyboard Shortcuts Windows Explorer Shortcuts Command Prompt Shortcuts Dialog Box Keyboard Shortcuts Excel Hotkeys

More information

Bridge Course Information and Communication Technology

Bridge Course Information and Communication Technology Bridge Course Information and Communication Technology Microsoft Word 1. Which bar is usually located below that Title Bar that provides categorized options? A. Menu bar B. Status Bar C. Tool bar D. Scroll

More information

MICROSOFT WORD 2010 Quick Reference Guide

MICROSOFT WORD 2010 Quick Reference Guide MICROSOFT WORD 2010 Quick Reference Guide Word Processing What is Word Processing? How is Word 2010 different from previous versions? Using a computer program, such as Microsoft Word, to create and edit

More information

Section 2. Opening and Editing Documents

Section 2. Opening and Editing Documents Section 2 Opening and Editing Documents Topics contained within this section: Opening Documents Using Scroll Bars Selecting Text Inserting and Deleting Text Copying and Moving Text Understanding and Using

More information

Life After Word An Introduction to Microsoft Word The University of Iowa ITS Campus Technology Services Iowa City, IA 52242

Life After Word An Introduction to Microsoft Word The University of Iowa ITS Campus Technology Services Iowa City, IA 52242 Life After Word 2003 An Introduction to Microsoft Word 2007 ITS Campus Technology Services Iowa City, IA 52242 March 2007 2 TABLE OF CONTENTS TABLE OF CONTENTS... 2 INTRODUCTION... 4 WHAT S NEW... 4 GETTING

More information