NOTE. To use Macros, the Duet or PC on which you are running Lyric must have Microsoft Internet Explorer 6.0 or later installed.

Size: px
Start display at page:

Download "NOTE. To use Macros, the Duet or PC on which you are running Lyric must have Microsoft Internet Explorer 6.0 or later installed."

Transcription

1 Page 1 of 14 Macros Overview View Menu > Macros NOTE To use Macros, the Duet or PC on which you are running Lyric must have Microsoft Internet Explorer 6.0 or later installed. Refer to LEIF Help for additional information about the LEIF API. the LEIF.hlp file in the directory in which Lyric was installed. If clicking this link does not open LEIF Help, open Macros are VB Script programs that are can simplify and automate repetitive tasks for easy recall in on-air or production situations. Such tasks include reading messages, keystrokes, menu selections, etc. They can be triggered as needed, and/or a macro can be set to automatically execute at the time when the macro file is read. This section covers the use of macro scripts as triggered from within Lyric. Individual macro commands, however, can be sent to Lyric via Intelligent Interface. Refer to Intelligent Interface: E Command - Send Macro Commands for detailed information. Note that not all keystrokes or mouse actions are supported in Lyric macros. Refer to Specifying Characters Using SendKeys Commands for additional information. Supported Lyric functions are listed at the end of this section. Macros - Related Topics About VB (Visual Basic) Script Lyric macros are founded on the VB Script language, allowing sophisticated, high-level programs to be created and assigned to macros. These include custom user interfaces for data acquisition and display. The use of VB Script also enables the macro user to control custom CAL (Chyron Abstraction Layer) applications. The Macros Dialog Box For the purpose of the following example, make sure that the Lyric Canvas is empty, and does not contain a fullscreen 2D Text Window. The first step in creating a macro is to access the Macros dialog box. To do so: From the View menu, select Macros. The Macros dialog box is displayed. Macros Dialog Box

2 Page 2 of 14 The Macros dialog box is split into two panes. The left pane displays the following information for each macro: The name of the macro. The hotkey, if specified, that executes the macro. The file path of the macro once it has been saved. The right pane displays three tabs: Description: Displays a short description of each macro. This tab is displayed on opening the Macros dialog box. Script: Displays the VB Script, i.e. the program, for the selected macro. Macro scripts can be input in a variety of manners: Typing a script directly into the Script tab; opening an existing macro file; and recording keyboard/mouse activity. Globals: Displays a list of Global Variables available for use by any of the macros and by macros which are subsequently read into the Macros dialog box. There are also a set of icons at the bottom left of the dialog box, which execute a variety of functions. The left and right panes can be resized by clicking-and-dragging, as can the Macro, Hotkey and File columns: Creating and Playing Back a Macro Resized Macros Dialog Box The following script that you will create will open a 2D Text Window, change its position twice, and display the word "Hello!" 1. Click the Add icon to initiate a new macro file. The default new file name appears in the Description tab. along with the time and date. Additional descriptive text can be typed in at any time. Text editing functions are available by right-clicking in the Description pane. See Right-Pane Context Menu later in this section for additional information on this menu. Adding a New Macro Right-Pane Context Menu 2. Click the Record icon. The right pane switches to displaying the Script tab. From this point on, almost any action performed on the Canvas is recorded as part of the macro. Additionally, while the macro is recording, the Macro symbol next to the default filename blinks, and the letter M in the Status Bar turns red. 3. Click on the Canvas to make it the active window. 4. Open a 2D Text Window. Note that the creation of the 2D Text Window has been recorded.

3 Page 3 of 14 Macros Script Recording the Addition of a 2D Text Window 5. Click-and-drag the 2D Text Window to a new position, and then click-and-drag it to still a different position. Each change in position is recorded as a pair of commands: one addressing the X position, and one addressing the Y position. Macros Script Recording 2D Text Window Movement Most actions involved in creating a Lyric composition can be recorded as part of a macro. Actions not directly related to the creation of the Lyric composition, for example clicking on a window to make it active, are generally ignored. Refer to the end of this section for a complete list of the actions that can be recorded in a macro. 6. In the 2D Text Window, type the word "Hello!" Each character that is typed is recorded in the macro. Macros Script Recording Text Typing

4 Page 4 of Click the Stop icon. The Macro symbol does not stop flashing until the current macro is saved or abandoned. Saving macros is covered later in this section. 8. Press Ctrl + Q to erase the Canvas. Now that recording has stopped, the Erase command is not added to the macros script. 9. Click the Play icon or double-click the macro name. The window containing the typed "Hello!" appears on the Canvas. Because no timing commands were included in this macros script, the repositioning of the 2D Text Window and the typing of the characters may be imperceptible on playback. A macro can also be executed by pressing a Hot Key combination, which is a keyboard shortcut. Setting Hot Keys is covered later in this section. Add additional macros and experiment with other Lyric composition tools to see how they are translated into VB Script commands. Right-Pane Context Menu The right-pane context menu accesses text editing functions in the Description, Script and Globals tabs. To display this menu: Right-click the right pane (displaying the Description, Script and Globals tab) of the Macros dialog box. Right-Pane Context Menu Standard Windows text editing functions such as Cut, Copy, Paste, Delete and Select All are available from this menu. If certain language packages are installed, three additional items are displayed: Right-to-Left Reading Order: Right-justifies the text, and specifies that the text should be read from rightto-left. To toggle on/off, click Right-to-Left Reading Order. When active, a check is displayed next to the menu item. Show Unicode Control Characters: Currently not implemented. Insert Unicode Control Character: Currently not implemented. Left-Pane Context Menu The left-pane context menu accesses functions that allow one to edit, delete, save, set a hotkey or rename a macro. To display this menu: Right-click a macro name in the left pane of the Macros dialog box. The left-pane context menu is displayed. Note that the Script Code item is grayed out. This item only becomes active if the selected macro has been previously saved.

5 Page 5 of 14 Macros Left-Pane Context Menu The context menu items are covered in following order: Save Macro; Script Code; Hot Key; Rename; Delete. Saving Macros Macros that are listed in the Macros dialog box can be saved individually or together when a Save is executed. Macros can be saved in two different formats. *.lmx: The *.lmx format is a file consisting solely of ASCII text, allowing the file to be opened in any text editor for editing. Files of this format can also be used in programs outside of Lyric. *.lyr: The *.lyr format is executable only from Lyric. The advantage to this format is that it allows one individual macro to automatically execute upon reading the macro file. The *.lyr format also allows the file to be read as a Lyric message by entering the Message Number, then pressing Read. It should not, however, be edited outside of Lyric. A macro script or macro name can also be embedded in a Lyric message, and is executed immediately when the message is read. Refer to Selective Recording - Embedded Macro for details. To save a macro or group of macros as an *.lmx file: 1. Select Save Macro from the left-pane context menu to save the selected macro, or click the Save All Macros to File icon or press Ctrl + S to save all macros displayed in the Macros dialog box. The Save As dialog opens. Save Macros As *.lmx 2. In the Save In field, navigate to the directory in which the macro file is to be saved. 3. In the Save as Type drop-down list box, select Lyric Macro Files (*.lmx). Note that the Auto Execute

6 Page 6 of 14 drop-down is grayed out. 4. Enter a File Name. 5. Optional: To save Global Variables, select (check) the Save Globals check box. Global Variables are covered later in this section. 6. Click Save. Note that the when a group of macros is saved as an *.lmx file, the code for each macro is displayed in order of its Macros dialog box listing when the.lmx file is opened in a text editor. To save a macro or group of macros as a *.lyr message: 1. Select Save Macro from the left-pane context menu to save the selected macro, or click the Save All Macros to File icon or press Ctrl + S to save all macros displayed in the Macros dialog box. The Save As dialog opens. It is shown with the file information already entered. Save Macros As *.lyr 2. In the Save In field, navigate to the directory in which the macro message is to be saved. 3. In the Save as Type drop-down list box, select Lyric Macro Files (*.lmx). 4. Enter a File Name. 5. Optional: In the Auto Execute drop-down list box, select the individual macro that should automatically execute when the macro message is read. This step is necessary for auto-execution even if the macro message contains only one macro. Leave the Auto Execute field blank if automatic macro execution should not take place. 6. Optional: To save Global Variables, select (check) the Save Globals check box. Global Variables are covered later in this section. 7. Click Save. If a macro was specified in the Auto-Execute field, the macro will execute when the Lyric macro message is read.

7 Page 7 of 14 Quickly Saving a Macro File (*.lyr) for Easy Recall The following procedures save the macro file in the.lyr format to the current Message Number in the Default Message Directory. Using this recording method also makes allows for easy recall of the macro message, as described in Opening/Reading a Macro later in this section. A quick method for recording a Macro file in the *.lyr format is as follows: 1. Press Ctrl + Record. The Record Only: dialog box opens. 2. Select Macros 3. Click Record. A shortcut key combination can also be used to record the macro: Press Ctrl + Record M Enter. The above methods cannot be used to save Macro files in the.lmx format. Opening/Reading a Macro Macro files in both the *.lmx and *.lyr formats can be opened in Lyric from File > Open, then by navigating to and selecting the file. Macro files in the *.lyr format, that also are identified by numeric names of eight digits or less, and that are stored in the Lyric Default Message Directory, can be read in the same manner as other Lyric messages. Enter the Message Number, then press Read. Note that opening a macro that has the same Macro Name (not file name) as a macro already listed in the window results in the newer macro overwriting the older macro in the Macros dialog box. This does not affect the original macro files that have been previously saved. It simply affects which macro is currently loaded. When a macro in the Macros dialog box has not yet been saved, the overwrite would erase it. A macro can be embedded in a Lyric message so that it automatically executes when the message is read. Refer to Selective Recording - Embedded Macro for details. Script Code Window and Editing Script After an individual macro or group of macros is saved, the VB Script code for the entire file can be displayed and edited. The changes can then be saved. To view and edit the macro file within Lyric: 1. Select Script Code from the left-pane context menu. The Script Code window is displayed.

8 Page 8 of 14 Script Code Window As shown in the previous figure, each individual macro, whether saved individually or as a group, is identified as a subroutine in the VB Script. Script from any of the subroutines can be edited. 2. Make edits to the script. To access available editing functions, right-click in the Script Code window. Script Code Edit Functions 3. When editing is complete, click the Windows Close icon. The following is displayed. Save Changes to Macro? 4. Click Yes to save changes, No to exit the Script Code window without saving changes, or Cancel to

9 Page 9 of 14 cancel the operation and continue to edit. An individual macro can also be edited from within the Script tab of the Macros dialog box. 1. Select (highlight) the macro name in the Macros dialog box. 2. Click the Script tab. The script for the selected macro is displayed. Editing a Macro from the Script Tab 3. Make edits to the script. To access available editing functions, right-click in the Script Code window, as shown in the preceding figure. 4. When editing is complete, the script can be played back. Note that when editing in this manner, the script is not saved until one of the Save functions is executed. Deleting a Macro/All Macros Macros can be deleted either individually or as a group from the Macros dialog box. Note that Global Variables are not deleted by either operation. An individual macro can be deleted from the Macros dialog box. 1. Right-click the macro name in the Macros dialog box. 2. Select Delete from the context menu or press the Delete key. The Confirm Delete prompt is displayed. Confirm Delete Prompt

10 Page 10 of Click OK to delete, or Cancel to cancel the deletion. To erase all macros from the Macros dialog box: 1. Click the Clear All Macros icon. The Confirm Deletion prompt is displayed. Confirm Deletion Prompt 2. Click OK to delete all macros, or Cancel to cancel the deletion. Setting Hot Keys and Macro Symbol Colors A Hot Key, or keyboard shortcut, can be assigned to each individual macro, eliminating the need to use the mouse to execute the macro. A color can also be assigned to the Macro symbol for easy recognition. To set a Hot Key and a macro color: 1. Right-click the macro name in the Macros dialog box. 2. Select Hot Key from the context menu. The Macro Short Cuts dialog box opens. Macro Short Cuts Dialog Box 3. As shown in the preceding figure, enter a key combination in the Hot Key field, then select a color in the Icon color list. For no color, select <none>. 4. Click Apply. The macro can now be executed by pressing the Hot Key combination. The following figure shows Hot Keys and Macro symbol colors applied to all three macros. Hot Keys and Macro Symbol Colors Applied

11 Page 11 of 14 Renaming a Macro A individual macro can be renamed. 1. Right-click the macro name in the Macros dialog box. 2. Select Rename from the context menu. The macro name become available for editing. Type the new name of the macro. Names must be composed of alphanumeric characters and must not contain spaces or punctuation characters. 3. Press Enter. The macro displays the new name. Renaming a Macro Global Variables Renamed Macro A Global Variable is a value that is available to all macros. A Global Variable can be an absolute value, or it can be determined by input from another source, i.e., a macro. For example, a Global Variable such as a price, could be input via one macro. Another macro could then display the Global Variable in a 2D Text Template on the Lyric Canvas. Global Variables can be defined in the Globals tab of the Macros dialog box. Each Global Variable must be preceded by the word public, which indicates that it is available to all macros. Global Variables remain active until deleted or reset (See Resetting the Macro Engine and Global Variables following this subsection). To demonstrate a simple example, the following procedure will define a Global Variable. Two macros will also be created: one to take input of a number, and another to display it. To define a Global Variable "a", which will be set and accessed by macros: 1. Click on the Globals tab in the Macros dialog box. 2. Type the following: public a Defining a Global Variable

12 Page 12 of 14 Create the input macro that displays a Windows input box. This value becomes the Global Variable "a" that can be accessed by other macros. 1. Click the Add icon. This initiates the creation of a new macro. Rename the macro as Input. 2. Click on the Script tab. Type the following: a = InputBox ("Enter Number") To create the macro that displays the Global Variable "a" in a Windows message box. 1. Click the Add icon. This initiates the creation of a new macro. Rename the macro as Output. 2. Click on the Script tab. Type the following: MsgBox (a) The macros can now be executed. 1. Select the macro named Input, then double-click it or click the Play icon. The following is displayed: Input Box Requesting a Value 2. Type a number into the field. For this example, we will use 456. Click OK. 3. Select the macro named Input, then double-click it or click the Play icon. The following is displayed: Outputting the Global Variable Resetting the Macro Engine and Global Variables The macro engine can be reset, clearing out the macros and bringing the VB Script processor back to its initial state. This is recommended when work with one set of macros is complete, and a new set is to be opened. In addition, if macros that normally execute properly exhibit unexpected behavior, or newly created macros are retaining and executing previously created scripts, resetting the macro engine can restore proper function. Note that executing a reset also clears macros that have been created and sent via Intelligent Interface. These macros do not appear in the Macros dialog box. After a reset, it is necessary to resend the macros to Lyric if they are to be used. The Reset Macro Engine and Global Variables can reset only the macros or the macros and Global Variables. Generally, it is desirable not to reset the Global Variables, in order to leave them available for the next set of macros. To execute a reset: 1. Specify whether the macros only, or the macros and the Global Variables are to be reset. To Reset Macros Only: In the right pane of the Macros dialog box, click either the Description

13 Page 13 of 14 tab or the Script tab. To Reset Macros and Global Variables: In the right pane of the Macros dialog box, click Globals tab. 2. Click the Reset Macro Engine and Globals icon. The following is displayed. Confirm Macro Engine and Global Variable Reset Prompt 3. Click OK to reset or Cancel to cancel the operation.. Supported Functions For Macros The following Lyric operations can be performed using macro commands. Refer to LEIF Help for coding and syntax information. If clicking this link does not open LEIF Help, open the LEIF.hlp file in the directory in which Lyric was installed. Object Maintenance Add 2D window (including Roll, Crawl, Type-On, Clock, Timer) Add 3D object (characters, Wavefront, 3DS model) Add 2D image Selection of object by name Delete selected object(s) Toggle visibility (checkbox on scene graph) 2D Text Operations Typing 2D characters Cursor movement via arrow keys, home, end Delete, backspace, next line Insert 2D Text Template Tab to previous/next template Make Window Full Screen Select All 2D Text Insert/Delete Row Delete to end of row Pickup color/font Apply color/font, using shortcut keys Renumber templates

14 Page 14 of 14 Shift/Super-Shift row and page Ctrl+Tab (inserts white space tab) Escape (to exit an active template) Font and Color Hot Keys Animation Operations Set keyframes through Canvas actions or changing values on the XYZ Properties page Go to Next or Previous keyframe Fast Forward Fast Reverse Frame Forward Frame Reverse Go to end of animation Keyframe all objects/selected objects Play or Reverse Play animation Copy Animation State Paste Animation State Duet Operations Toggle Duet Live Button Transfer Channel selection/toggle Swap Transfer to next channel Scene Operations Setting message number Read Record Alt + Record Open (specified filename) Erase Wait (pause between macro commands for a given timeout) Macros - Related Topics

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

Presentations and PowerPoint

Presentations and PowerPoint V-1.1 PART V Presentations and PowerPoint V-1.2 Computer Fundamentals V-1.3 LESSON 1 Creating a Presentation After completing this lesson, you will be able to: Start Microsoft PowerPoint. Explore the PowerPoint

More information

MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros.

MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. Record a macro 1. On the Developer tab, in the Code group, click Record Macro. 2. In

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Microsoft Word 2010. Quick Reference Guide. Union Institute & University

Microsoft Word 2010. Quick Reference Guide. Union Institute & University Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...

More information

Introduction to Word 2007

Introduction to Word 2007 Introduction to Word 2007 You will notice some obvious changes immediately after starting Word 2007. For starters, the top bar has a completely new look, consisting of new features, buttons and naming

More information

PowerPoint 2013: Basic Skills

PowerPoint 2013: Basic Skills PowerPoint 2013: Basic Skills Information Technology September 1, 2014 1 P a g e Getting Started There are a variety of ways to start using PowerPoint software. You can click on a shortcut on your desktop

More information

Microsoft PowerPoint 2011

Microsoft PowerPoint 2011 Microsoft PowerPoint 2011 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Adding an Image to a Slide... 4 Downloading Images

More information

Using SSH Secure File Transfer to Upload Files to Banner

Using SSH Secure File Transfer to Upload Files to Banner Using SSH Secure File Transfer to Upload Files to Banner Several Banner processes, including GLP2LMP (Create PopSelect Using File), require you to upload files from your own computer to the computer system

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL TABLE OF CONTENTS CORSAIR UTILITY ENGINE OVERVIEW PROFILES 1 9 Introduction 2 Starting the Corsair Utility Engine 2 Profiles: Settings for a Specific Program

More information

Introduction to dobe Acrobat XI Pro

Introduction to dobe Acrobat XI Pro Introduction to dobe Acrobat XI Pro Introduction to Adobe Acrobat XI Pro is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view a copy of this

More information

Word 2007: Basics Learning Guide

Word 2007: Basics Learning Guide Word 2007: Basics Learning Guide Exploring Word At first glance, the new Word 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 University of Sheffield Contents 1. INTRODUCTION... 3 2. GETTING STARTED... 4 2.1 STARTING POWERPOINT... 4 3. THE USER INTERFACE...

More information

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc.

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc. NDA-30141 ISSUE 1 STOCK # 200893 CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000 NEC America, Inc. LIABILITY DISCLAIMER NEC America, Inc. reserves the right to change the specifications,

More information

Macros in Word & Excel

Macros in Word & Excel Macros in Word & Excel Description: If you perform a task repeatedly in Word or Excel, you can automate the task by using a macro. A macro is a series of steps that is grouped together as a single step

More information

Microsoft PowerPoint 2008

Microsoft PowerPoint 2008 Microsoft PowerPoint 2008 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Slide Layouts... 3 Adding an Image to a Slide...

More information

Move between open workbooks. Display the print menu. Select whole spreadsheet. Microsoft Excel Keyboard Keys. General

Move between open workbooks. Display the print menu. Select whole spreadsheet. Microsoft Excel Keyboard Keys. General Microsoft Excel Keyboard Keys Source: http://allhotkeys.com/microsoft_excel_hotkeys.html General New file Ctrl + N Open file Ctrl + O Save file Ctrl + S Move between open workbooks Ctrl + F6 Close file

More information

WINDOWS 7 MANAGE FILES AND FOLDER WITH WINDOWS EXPLORER

WINDOWS 7 MANAGE FILES AND FOLDER WITH WINDOWS EXPLORER WINDOWS 7 MANAGE FILES AND FOLDER WITH WINDOWS EXPLORER Last Edited: 2012-07-10 1 Introduce Windows Explorer... 3 Navigate folders and their contents... 5 Organize files and folders... 8 Move or copy files

More information

Getting Started on the Computer With Mouseaerobics! Windows XP

Getting Started on the Computer With Mouseaerobics! Windows XP This handout was modified from materials supplied by the Bill and Melinda Gates Foundation through a grant to the Manchester City Library. Getting Started on the Computer With Mouseaerobics! Windows XP

More information

Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint

Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint This document provides instructions for using slide masters in Microsoft PowerPoint. Slide masters allow you to make a change just

More information

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The

More information

Handout: Word 2010 Tips and Shortcuts

Handout: Word 2010 Tips and Shortcuts Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW

More information

Creating tables of contents and figures in Word 2013

Creating tables of contents and figures in Word 2013 Creating tables of contents and figures in Word 2013 Information Services Creating tables of contents and figures in Word 2013 This note shows you how to create a table of contents or a table of figures

More information

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT The Ribbon... 2 Default Tabs... 2 Contextual Tabs... 2 Minimizing and Restoring the Ribbon... 3 Customizing the Ribbon... 3 A New Graphic Interface... 5 Live

More information

Microsoft Word 2011: Create a Table of Contents

Microsoft Word 2011: Create a Table of Contents Microsoft Word 2011: Create a Table of Contents Creating a Table of Contents for a document can be updated quickly any time you need to add or remove details for it will update page numbers for you. A

More information

Getting Started Guide. Chapter 14 Customizing LibreOffice

Getting Started Guide. Chapter 14 Customizing LibreOffice Getting Started Guide Chapter 14 Customizing LibreOffice 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

More information

Windows 8.1 Update 1 Supplement

Windows 8.1 Update 1 Supplement Illustrated Series Guide to Windows 8.1 Update 1 Changes June 2014 Table of Contents (CTRL+Click a link to navigate directly to Part 1, 2, 3, or 4.) Part 1: What Version of Windows Am I Using? Part 2:

More information

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source Microsoft QUICK Source Internet Explorer 7 Getting Started The Internet Explorer Window u v w x y { Using the Command Bar The Command Bar contains shortcut buttons for Internet Explorer tools. To expand

More information

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc.

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc. Email Basics Add CC or BCC You can display the Bcc box in all new messages that you compose. In a new message, do one of the following: 1. If Microsoft Word is your e-mail editor a. Click the arrow to

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

Excel. Microsoft Office s spreadsheet application can be used to track. and analyze numerical data for display on screen or in printed

Excel. Microsoft Office s spreadsheet application can be used to track. and analyze numerical data for display on screen or in printed Excel Microsoft Office s spreadsheet application can be used to track and analyze numerical data for display on screen or in printed format. Excel is designed to help you record and calculate data, and

More information

Windows XP File Management

Windows XP File Management Windows XP File Management As you work with a computer creating more and more documents, you need to find a way to keep this information organized. Without a good organizational method, all your files

More information

Styles, Tables of Contents, and Tables of Authorities in Microsoft Word 2010

Styles, Tables of Contents, and Tables of Authorities in Microsoft Word 2010 Styles, Tables of Contents, and Tables of Authorities in Microsoft Word 2010 TABLE OF CONTENTS WHAT IS A STYLE?... 2 VIEWING AVAILABLE STYLES IN THE STYLES GROUP... 2 APPLYING STYLES FROM THE STYLES GROUP...

More information

Chapter 9 Slide Shows

Chapter 9 Slide Shows Impress Guide Chapter 9 Slide Shows Transitions, animations, and more Copyright This document is Copyright 2007 2013 by its contributors as listed below. You may distribute it and/or modify it under the

More information

Model 288B Charge Plate Graphing Software Operators Guide

Model 288B Charge Plate Graphing Software Operators Guide Monroe Electronics, Inc. Model 288B Charge Plate Graphing Software Operators Guide P/N 0340175 288BGraph (80207) Software V2.01 100 Housel Ave PO Box 535 Lyndonville NY 14098 1-800-821-6001 585-765-2254

More information

1.5 MONITOR. Schools Accountancy Team INTRODUCTION

1.5 MONITOR. Schools Accountancy Team INTRODUCTION 1.5 MONITOR Schools Accountancy Team INTRODUCTION The Monitor software allows an extract showing the current financial position taken from FMS at any time that the user requires. This extract can be saved

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Chapter 6. Formatting Text with Character Tags

Chapter 6. Formatting Text with Character Tags Chapter 6 Formatting Text with Character Tags 143 144 FrameMaker 7: The Complete Reference In many desktop publishing applications, you use a single style sheet for both paragraph and character formatting.

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Table Of Contents. iii

Table Of Contents. iii PASSOLO Handbook Table Of Contents General... 1 Content Overview... 1 Typographic Conventions... 2 First Steps... 3 First steps... 3 The Welcome dialog... 3 User login... 4 PASSOLO Projects... 5 Overview...

More information

Trace.Net OTDR Test Management Software User s guide

Trace.Net OTDR Test Management Software User s guide Trace.Net OTDR Test Management Software User s guide 2007-2009, AFL Telecommunications, all rights reserved. TRAC-01-1000 Revision B, 2009-06-10 Specifications are subject to change without notice. I Contents

More information

Microsoft Excel 2013: Headers and Footers

Microsoft Excel 2013: Headers and Footers Microsoft Excel 2013: Headers and Footers You can add headers or footers at the top or bottom of a printed worksheet. For example, you might create a footer that has page numbers, along with the date and

More information

Microsoft Migrating to Word 2010 from Word 2003

Microsoft Migrating to Word 2010 from Word 2003 In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,

More information

Microsoft Windows Overview Desktop Parts

Microsoft Windows Overview Desktop Parts Microsoft Windows Overview Desktop Parts Icon Shortcut Icon Window Title Bar Menu Bar Program name Scroll Bar File Wallpaper Folder Start Button Quick Launch Task Bar or Start Bar Time/Date function 1

More information

Advanced Presentation Features and Animation

Advanced Presentation Features and Animation There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more

More information

OPERATION MANUAL. MV-410RGB Layout Editor. Version 2.1- higher

OPERATION MANUAL. MV-410RGB Layout Editor. Version 2.1- higher OPERATION MANUAL MV-410RGB Layout Editor Version 2.1- higher Table of Contents 1. Setup... 1 1-1. Overview... 1 1-2. System Requirements... 1 1-3. Operation Flow... 1 1-4. Installing MV-410RGB Layout

More information

Creating trouble-free numbering in Microsoft Word

Creating trouble-free numbering in Microsoft Word Creating trouble-free numbering in Microsoft Word This note shows you how to create trouble-free chapter, section and paragraph numbering, as well as bulleted and numbered lists that look the way you want

More information

SPSS: Getting Started. For Windows

SPSS: Getting Started. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering

More information

Introduction to ProphetX Mini User Guide

Introduction to ProphetX Mini User Guide Introduction to ProphetX Mini User Guide Table of Contents User Interface... 3 Global ProphetX Preferences......3 Navigating ProphetX 3.x... 3 Docked Panes... 3 Context Tool Bar... 3 Split Views... 4 Tabbed

More information

Microsoft PowerPoint 2010 Handout

Microsoft PowerPoint 2010 Handout Microsoft PowerPoint 2010 Handout PowerPoint is a presentation software program that is part of the Microsoft Office package. This program helps you to enhance your oral presentation and keep the audience

More information

Using Microsoft Office XP Advanced Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.

Using Microsoft Office XP Advanced Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1. Using Microsoft Office XP Advanced Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Spring 2004 Contents Advanced Microsoft Word XP... 3 Customizing Word

More information

3 IDE (Integrated Development Environment)

3 IDE (Integrated Development Environment) Visual C++ 6.0 Guide Part I 1 Introduction Microsoft Visual C++ is a software application used to write other applications in C++/C. It is a member of the Microsoft Visual Studio development tools suite,

More information

PowerPoint 2007 Basics Website: http://etc.usf.edu/te/

PowerPoint 2007 Basics Website: http://etc.usf.edu/te/ Website: http://etc.usf.edu/te/ PowerPoint is the presentation program included in the Microsoft Office suite. With PowerPoint, you can create engaging presentations that can be presented in person, online,

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom

More information

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen

More information

WINDOWS 7 EXPLORE INTERNET EXPLORER 8

WINDOWS 7 EXPLORE INTERNET EXPLORER 8 WINDOWS 7 EXPLORE INTERNET EXPLORER 8 Windows 7 Explore Internet Explorer 8 Last Edited: 2012-07-10 1 Explore changes in the UI... 3 Enhance with built-in Search engine... 3 Manage and Organize IE with

More information

Importing Contacts to Outlook

Importing Contacts to Outlook Importing Contacts to Outlook 1. The first step is to create a file of your contacts from the National Chapter Database. 2. You create this file under Reporting, Multiple. You will follow steps 1 and 2

More information

Microsoft Excel 2010. Understanding the Basics

Microsoft Excel 2010. Understanding the Basics Microsoft Excel 2010 Understanding the Basics Table of Contents Opening Excel 2010 2 Components of Excel 2 The Ribbon 3 o Contextual Tabs 3 o Dialog Box Launcher 4 o Quick Access Toolbar 4 Key Tips 5 The

More information

Using Flow Control with the HEAD Recorder

Using Flow Control with the HEAD Recorder 03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,

More information

About the HealthStream Learning Center

About the HealthStream Learning Center About the HealthStream Learning Center HealthStream Learning Center TM Administrator access to features and functions described in the HLC Help documentation is dependent upon the administrator s role

More information

Microsoft Office PowerPoint 2013

Microsoft Office PowerPoint 2013 Microsoft Office PowerPoint 2013 Navigating the PowerPoint 2013 Environment The Ribbon: The ribbon is where you will access a majority of the commands you will use to create and develop your presentation.

More information

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail.

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail. Create a mail or e-mail merge Use mail or e-mail merge when you want to create a large number of documents that are mostly identical but include some unique information. For example, you can use mail merge

More information

TabletWorks Help Index 1

TabletWorks Help Index 1 TabletWorks Help Index 1 When the driver for your tablet type has been installed, the TabletWorks Control Panel is set up on the Windows Control Panel. The TabletWorks Control Panel is divided into several

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

Excel Templates. & Quote/Invoice Maker for ACT! Another efficient and affordable ACT! Add-On by V 1.1. http://www.exponenciel.com

Excel Templates. & Quote/Invoice Maker for ACT! Another efficient and affordable ACT! Add-On by V 1.1. http://www.exponenciel.com Excel Templates & Quote/Invoice Maker for ACT! V 1.1 Another efficient and affordable ACT! Add-On by http://www.exponenciel.com Excel Templates for ACT! User s Manual 2 Table of content Relationship between

More information

Automate tasks with Visual Basic macros

Automate tasks with Visual Basic macros Automate tasks with Visual Basic macros If you're not familiar with macros, don't let the term frighten you. A macro is simply a recorded set of keystrokes and instructions that you can use to automate

More information

Using SSH Secure Shell Client for FTP

Using SSH Secure Shell Client for FTP Using SSH Secure Shell Client for FTP The SSH Secure Shell for Workstations Windows client application features this secure file transfer protocol that s easy to use. Access the SSH Secure FTP by double-clicking

More information

Mouse and Keyboard Skills

Mouse and Keyboard Skills OCL/ar Mouse and Keyboard Skills Page 1 of 8 Mouse and Keyboard Skills In every computer application (program), you have to tell the computer what you want it to do: you do this with either the mouse or

More information

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy USER GUIDE Unit 2: Synergy Chapter 2: Using Schoolwires Synergy Schoolwires Synergy & Assist Version 2.0 TABLE OF CONTENTS Introductions... 1 Audience... 1 Objectives... 1 Before You Begin... 1 Getting

More information

Reviewing documents with track changes in Word 2013

Reviewing documents with track changes in Word 2013 Reviewing documents with track changes in Word 2013 Information Services Reviewing documents with track changes in Word 2013 This note covers how to use Word s reviewing tools to track the changes made

More information

Getting Started with Skype for Business 2015

Getting Started with Skype for Business 2015 Getting Started with Skype for Business 2015 Training and Documentation Team, April 2015 What is Skype for Business? Skype for Business is a communication tool which allows you to interact with colleagues

More information

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Excel basics Excel is a powerful spreadsheet and data analysis application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

Call Recorder Oygo Manual. Version 1.001.11

Call Recorder Oygo Manual. Version 1.001.11 Call Recorder Oygo Manual Version 1.001.11 Contents 1 Introduction...4 2 Getting started...5 2.1 Hardware installation...5 2.2 Software installation...6 2.2.1 Software configuration... 7 3 Options menu...8

More information

Adobe Conversion Settings in Word. Section 508: Why comply?

Adobe Conversion Settings in Word. Section 508: Why comply? It s the right thing to do: Adobe Conversion Settings in Word Section 508: Why comply? 11,400,000 people have visual conditions not correctible by glasses. 6,400,000 new cases of eye disease occur each

More information

Microsoft Migrating to PowerPoint 2010 from PowerPoint 2003

Microsoft Migrating to PowerPoint 2010 from PowerPoint 2003 In This Guide Microsoft PowerPoint 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free PowerPoint

More information

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame...

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame... Using Microsoft Office 2003 Introduction to FrontPage Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Fall 2005 Contents Launching FrontPage... 3 Working with

More information

Website Creator Pro Quick Reference Guide. Version: 0.5

Website Creator Pro Quick Reference Guide. Version: 0.5 Website Creator Pro Quick Reference Guide Version: 0.5 Contents 1. Introduction 3 2. Navigation 4 2.1. Top Bar 4 2.1.1. Tabs 4 2.1.2. Buttons 4 2.2. Website Structure Fly-Out 4 3. Usage 5 3.1. Editor 5

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

Book Builder Training Materials Using Book Builder September 2014

Book Builder Training Materials Using Book Builder September 2014 Book Builder Training Materials Using Book Builder September 2014 Prepared by WDI, Inc. Table of Contents Introduction --------------------------------------------------------------------------------------------------------------------

More information

USER INTERFACE HOTKEYS WEB FINDER HOTKEYS. Shortcut Keys and Hot Keys: ZoomText 10 Magnifier/Reader

USER INTERFACE HOTKEYS WEB FINDER HOTKEYS. Shortcut Keys and Hot Keys: ZoomText 10 Magnifier/Reader Shortcut Keys and Hot Keys: ZoomText 10 Magnifier/Reader USER INTERFACE HOTKEYS The modifier keys consist of any combination of ALT, CTRL, SHIFT, CAPS LOCK and the Windows Key. The primary key can be any

More information

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS Last Edited: 2012-07-09 1 Navigate the document interface... 4 Create and Name a new document... 5 Create a new Google document... 5 Name Google documents...

More information

OFFICE KEYBOARD (MT1210 & MT1405) OFFICE FEATURES

OFFICE KEYBOARD (MT1210 & MT1405) OFFICE FEATURES OFFICE KEYBOARD (MT1210 & MT1405) OFFICE FEATURES Thank you for purchasing OFFICE KEYBOARD. This User s manual contains all information that helps you to operate your keyboard. Please keep the software

More information

Appointment Scheduler

Appointment Scheduler EZClaim Appointment Scheduler User Guide Last Update: 11/19/2008 Copyright 2008 EZClaim This page intentionally left blank Contents Contents... iii Getting Started... 5 System Requirements... 5 Installing

More information

Access 2007 Creating Forms Table of Contents

Access 2007 Creating Forms Table of Contents Access 2007 Creating Forms Table of Contents CREATING FORMS IN ACCESS 2007... 3 UNDERSTAND LAYOUT VIEW AND DESIGN VIEW... 3 LAYOUT VIEW... 3 DESIGN VIEW... 3 UNDERSTAND CONTROLS... 4 BOUND CONTROL... 4

More information

Create Database Tables 2

Create Database Tables 2 Create Database Tables 2 LESSON SKILL MATRIX Skill Exam Objective Objective Number Creating a Database Creating a Table Saving a Database Object Create databases using templates Create new databases Create

More information

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 1 Contents Chapter 1 System Requirements.................. 3 Chapter 2 Quick Start Installation.................. 4 System Requirements................

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

Text Basics. Introduction

Text Basics. Introduction Text Basics Introduction PowerPoint includes all the features you need to produce professionallooking presentations. When you create a PowerPoint presentation, it is made up of a series of slides. The

More information

Help File. Version 1.1.4.0 February, 2010. MetaDigger for PC

Help File. Version 1.1.4.0 February, 2010. MetaDigger for PC Help File Version 1.1.4.0 February, 2010 MetaDigger for PC How to Use the Sound Ideas MetaDigger for PC Program: The Sound Ideas MetaDigger for PC program will help you find and work with digital sound

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

ICP Data Entry Module Training document. HHC Data Entry Module Training Document

ICP Data Entry Module Training document. HHC Data Entry Module Training Document HHC Data Entry Module Training Document Contents 1. Introduction... 4 1.1 About this Guide... 4 1.2 Scope... 4 2. Step for testing HHC Data Entry Module.. Error! Bookmark not defined. STEP 1 : ICP HHC

More information

I ntroduction. Accessing Microsoft PowerPoint. Anatomy of a PowerPoint Window

I ntroduction. Accessing Microsoft PowerPoint. Anatomy of a PowerPoint Window Accessing Microsoft PowerPoint To access Microsoft PowerPoint from your home computer, you will probably either use the Start menu to select the program or double-click on an icon on the Desktop. To open

More information

13-1. This chapter explains how to use different objects.

13-1. This chapter explains how to use different objects. 13-1 13.Objects This chapter explains how to use different objects. 13.1. Bit Lamp... 13-3 13.2. Word Lamp... 13-5 13.3. Set Bit... 13-9 13.4. Set Word... 13-11 13.5. Function Key... 13-18 13.6. Toggle

More information

MS Word 2007 practical notes

MS Word 2007 practical notes MS Word 2007 practical notes Contents Opening Microsoft Word 2007 in the practical room... 4 Screen Layout... 4 The Microsoft Office Button... 4 The Ribbon... 5 Quick Access Toolbar... 5 Moving in the

More information