Session 10. Microsoft and The DigiPen Institute of Technology Webcast Series

Size: px
Start display at page:

Download "Session 10. Microsoft and The DigiPen Institute of Technology Webcast Series"

Transcription

1 Session 10 Microsoft and The DigiPen Institute of Technology Webcast Series

2 HOW TO USE THIS DOCUMENT This e-textbook has been distributed electronically using the Adobe Portable Document Format (PDF) format. More than just a converted text file, this document was designed to take advantage of this medium so that both instructors and participants, using the free Adobe Acrobat Reader version 6.0 or 7.0, can create personalized versions of the document. They can easily search, highlight text, and add comments. This section will cover how to use this document and provides tips on the best practices. On the left side of the document there are tabs. If you click on the bookmark tab, you will see the different chapters of the book in Red. If you click on them they will take you to that part of the book. You can expand the bookmarks by clicking the plus sign next to each bookmark to see the different sections of that particular chapter. Bookmarks The sections are color-coded as follows: BLUE Sub-sections of content for a given chapter. ORANGE Examples are orange. 2

3 Searching the Document This document makes it easy for users to search through the document for specific words or phrases. To access this feature: Press CTRL+F Or Click the Edit in the top menu and click Search. Or Click on the the toolbar. icon on This will open up the search dialogue box on the right side of the screen. Simply type in the word or phrase and choose the options that best fit your search and click Search. To hide the dialogue box, click the Hide button in the top right-hand corner. Commenting One of the most useful functions available to users is the ability to use Adobe Acrobat Reader version 6.0 or 7.0 to highlight important sections of text and to add personal comments to the user s copy of this PDF. Much like how you would use a highlighter or scribble comments in the margin, this function enhances the PDF to be a functional study resource. Click the Commenting icon or in the top menus, click Tools and scroll down to Commenting. In the scroll down menu that appears, select Show Commenting Toolbar. You will notice that there are a few options to choose from. The tools you will be primarily concerned with are the Note Tool and the Highlighter. 3

4 Notes The Note Tool allows you to place sticky notes anywhere you wish in the document. Simply click on this icon and click anywhere in the document. A small text window will open for the user to enter comments. Comment/Notes can be minimized or left open. Minimized notes can be opened again by double clicking the icon of the note you wish to open. In the tabs on the left of the screen is the Comments tab. This allows the user to view all of the comments. This section allows the user to print/import/export the comments. You can use the import/export function to share your notes with other participants. In the top right corner of the Comments window is Options under which selected comments can be imported or exported. 4

5 Highlighting The Highlighter allows a user to highlight sections of text Customizing the Highlighing/Commenting Feature To further customize these features open the Properties Toolbar by either pressing CTRL+E or clicking View in the top menu, scrolling down to Toolbars and click Properties Bar. The Properties Toolbar allows you to choose the color, transparency and icons that appear when you use the commenting tools. To change the properties of a note or highlighted section after it is already placed, right click on the icon or section and select Properties. You will be able to change the color, transparency, the icon, or the Author name. 5

6 Other Functionality Snapshot Tool Another useful tool in this document is the Snapshot Tool. This allows a user to take a picture of a section of the screen and paste it into PowerPoint presentations, Word documents and other programs. To use this tool, click on the Snapshot Tool icon and drag an area select window around the section of the document you wish to put onto the clipboard for pasting into another program. 6

7 INTERFACE MainMenu is the level where players have options to choose from: seeing the controls, checking the help page, exiting the game, or starting a new game. There are several menu items, so a variable should save the currently selected item. private SELECTEDITEM SelectedItem = SELECTEDITEM.NEW; where it could be one of these values: enum SELECTEDITEM NEW, HELP, CREDITS, EXIT, BACK And the spotlight s direction (explained later) will be direction and the menu item saved in the variable SelectedItem. This level has three sections that are displayed separately, so we must create a variable that saves the section that the player is currently in: private MAINMENUSTATUS CurrentStatus = MAINMENUSTATUS.MAIN; where it could be one of these values: enum MAINMENUSTATUS MAIN, HELP, CREDITS 7

8 There are five menu items: New Game, Help, Credits, Exit, and Back. Depending on the game status, saved in the variable CurrentStatus, only the needed menu items will be used. This is done in the switch cases in the Update and Render functions. To add interface items, add the highlighted code of to each of the tasks below: File Name = Game.cs Class Name = class Game Constructor = public Game() Replace the highlighted code public Game() Directory.SetCurrentDirectory(Application.StartupPath + "\\Assets\\"); Sound.Initialize(); CurrentLevel = new Level1(); With the following code: CurrentLevel = new MainMenu(); File Name = MainMenu.cs Add all of the following code: using System; using System.Drawing; using System.ComponentModel; using System.Windows.Forms; using System.IO; using Microsoft.DirectX; using Microsoft.DirectX.Direct3D; using DIRECT3D = Microsoft.DirectX.Direct3D; using System.Collections.Generic; using Microsoft.Samples.DirectX.UtilityToolkit; namespace PucThePirate enum MAIMENUSTATUS MAIN, HELP, CREDITS enum SELECTEDITEM NEW, HELP, CREDITS, EXIT, BACK class MainMenu : BaseLevel private List<MenuItem> MainMenuItems = new List<MenuItem>(); private MAIMENUSTATUS CurrentStatus = MAIMENUSTATUS.MAIN; private SELECTEDITEM SelectedItem = SELECTEDITEM.NEW; private List<Cookie> MainMenuHelpCookies = new List<Cookie>(); MenuItem BackItem = null; protected override void InitializeGraphics() //these meshes are used in the main menu level LevelMeshHolder.AddMesh("NewGame.x"); LevelMeshHolder.AddMesh("Credits.x"); 8

9 LevelMeshHolder.AddMesh("Help.x"); LevelMeshHolder.AddMesh("Exit.x"); LevelMeshHolder.AddMesh("Back.x"); LevelMeshHolder.AddMesh("Life.x"); LevelMeshHolder.AddMesh("Speed.x"); LevelMeshHolder.AddMesh("Bomb.x"); LevelMeshHolder.AddMesh("GodMode.x"); LevelMeshHolder.AddMesh("NormalCoin.x"); LevelAnimationHolder.AddAnimation("ExitDoor.x"); LoadGraphics(); //this is the background og the main menu level GameBackground = new Background("Intro3D.jpg"); protected override void InitializeSounds() //this sound is used when the user change the selected menu item LevelSoundHolder.AddSound("EatCookie.wav"); public MainMenu() InitializeGraphics(); InitializeSounds(); //creating the menu items for this level MainMenuItems.Add(new MenuItem(new Vector3(-60, 30, 0), LevelMeshHolder.GetMesh("NewGame.x"))); MainMenuItems.Add(new MenuItem(new Vector3(-60, 0, 0), LevelMeshHolder.GetMesh("Help.x"))); MainMenuItems.Add(new MenuItem(new Vector3(-60, -30, 0), LevelMeshHolder.GetMesh("Credits.x"))); MainMenuItems.Add(new MenuItem(new Vector3(-60, -60, 0), LevelMeshHolder.GetMesh("Exit.x"))); MainMenuItems[0].isSelected = true; //the backitem is created in a different variable because it s not used all the time (Only in the Credits and Help pages) BackItem = new MenuItem(new Vector3(), LevelMeshHolder.GetMesh("Back.x")); //these cookies are used in the help page MainMenuHelpCookies.Add(new Cookie(new Vector3(27, 22, -80), COOKIETYPE.GODMODE, LevelMeshHolder.GetMesh("GodMode.x"))); MainMenuHelpCookies.Add(new Cookie(new Vector3(22, 6, -100), COOKIETYPE.LIFE, LevelMeshHolder.GetMesh("Life.x"))); MainMenuHelpCookies.Add(new Cookie(new Vector3(21.5f, -5, -100), COOKIETYPE.SPEEDINCREASE, LevelMeshHolder.GetMesh("Speed.x"))); MainMenuHelpCookies.Add(new Cookie(new Vector3(10.5f, -8, -140), COOKIETYPE.NORMAL, LevelMeshHolder.GetMesh("NormalCoin.x"))); 9

10 MainMenuHelpCookies.Add(new Cookie(new Vector3(27, -33, -80), COOKIETYPE.BOMB, LevelMeshHolder.GetMesh("Bomb.x"))); MainMenuHelpCookies.Add(new Cookie(new Vector3(37, 45, -40), COOKIETYPE.EXITDOOR, LevelAnimationHolder.GetAnimation(0))); MainMenuHelpCookies[2].xAngle = (float)(math.pi / 2.0f); MainMenuHelpCookies[3].xAngle = (float)(math.pi / 2.0f); MainMenuHelpCookies[4].xAngle = (float)(math.pi / 2.0f); MainMenuHelpCookies[2].xAngle = 0.2f; Reset(); //depending on the main menu status, different items are updated public override void Update() switch (CurrentStatus) case MAIMENUSTATUS.MAIN: foreach (MenuItem MI in MainMenuItems) MI.Update(Matrix.Identity); Project.MyDevice.Lights[1].Direction = Vector3.Subtract(MainMenuItems[(int)SelectedItem].Position, Project.MyDevice.Lights[1].Position); Project.MyDevice.Lights[1].Update(); case MAIMENUSTATUS.HELP: foreach (Cookie C in MainMenuHelpCookies) C.Update(Matrix.Identity); BackItem.Update(Matrix.Identity); Project.MyDevice.Lights[1].Direction = Vector3.Subtract(BackItem.Position, Project.MyDevice.Lights[1].Position); Project.MyDevice.Lights[1].Update(); case MAIMENUSTATUS.CREDITS: BackItem.Update(Matrix.Identity); Project.MyDevice.Lights[1].Direction = Vector3.Subtract(BackItem.Position, Project.MyDevice.Lights[1].Position); Project.MyDevice.Lights[1].Update(); //depending on the main menu status, different items are rendered public override void Render() 10

11 GameBackground.Render(); switch(currentstatus) case MAIMENUSTATUS.MAIN: foreach (MenuItem MI in MainMenuItems) SetupMatrices(MI.GetTransformationMatrix()); MI.Render(); case MAIMENUSTATUS.HELP: if (CurrentStatus == MAIMENUSTATUS.HELP) foreach (Cookie C in MainMenuHelpCookies) SetupMatrices(C.GetTransformationMatrix()); C.Render(); SetupMatrices(BackItem.GetTransformationMatrix()); BackItem.Render(); case MAIMENUSTATUS.CREDITS: SetupMatrices(BackItem.GetTransformationMatrix()); BackItem.Render(); //Taking the keyboard s input public override void KeyPressedHandler (System.Windows.Forms.KeyEventArgs Key) if (Key.KeyCode == Keys.Return) StartSelectedItem(); return; switch (CurrentStatus) case MAIMENUSTATUS.MAIN: if (Key.KeyCode == Keys.C) SelectedItem = SELECTEDITEM.CREDITS; StartSelectedItem(); else if (Key.KeyCode == Keys.H) SelectedItem = SELECTEDITEM.HELP; 11

12 StartSelectedItem(); else if (Key.KeyCode == Keys.N) SelectedItem = SELECTEDITEM.NEW; StartSelectedItem(); else if (Key.KeyCode == Keys.Down ) MainMenuItems[(int)SelectedItem].isSelected = false; if ((int)selecteditem < 3) ++SelectedItem; else SelectedItem = SELECTEDITEM.NEW; MainMenuItems[(int)SelectedItem].isSelected = true; else if (Key.KeyCode == Keys.Up) MainMenuItems[(int)SelectedItem].isSelected = false; if(selecteditem > 0) --SelectedItem; else SelectedItem = SELECTEDITEM.EXIT; MainMenuItems[(int)SelectedItem].isSelected = true; case MAIMENUSTATUS.CREDITS: case MAIMENUSTATUS.HELP: if (Key.KeyCode == Keys.B) ChangeStatus(MAIMENUSTATUS.MAIN); public override void Reset() Project.MyDevice.RenderState.Lighting = false; GameBackground.Reset(Project.CurrentWindowWidth, Project.CurrentWindowHeight); ResetCamera(); 12

13 //the window messages are handled in a different way depending on the main menu status public override void HandleMessages(IntPtr hwnd, NativeMethods.WindowMessage msg, IntPtr wparam, IntPtr lparam) private void ChangeStatus(MAIMENUSTATUS newstatus) CurrentStatus = newstatus; switch (CurrentStatus) case MAIMENUSTATUS.MAIN: GameBackground.ChangeTexture("Intro3D.jpg"); Project.MyDevice.RenderState.Ambient = System.Drawing.Color.Black; SelectedItem = SELECTEDITEM.NEW; MainMenuItems[(int)SelectedItem].isSelected = true; case MAIMENUSTATUS.CREDITS: GameBackground.ChangeTexture("CreditsPage.jpg"); Project.MyDevice.RenderState.Ambient = System.Drawing.Color.White; BackItem.Position = new Vector3(75, -65, 0); MainMenuItems[(int)SelectedItem].isSelected = false; SelectedItem = SELECTEDITEM.BACK; case MAIMENUSTATUS.HELP: GameBackground.ChangeTexture("ControlsPage.jpg"); Project.MyDevice.RenderState.Ambient = System.Drawing.Color.White; BackItem.Position = new Vector3(5, -65, 0); MainMenuItems[(int)SelectedItem].isSelected = false; SelectedItem = SELECTEDITEM.BACK; //switching music between main menu pages private void SwitchMusic(string FileName) BackgroundMusic.Stop(); BackgroundMusic.Dispose(); BackgroundMusic = new Music(FileName); BackgroundMusic.Play(); private void StartSelectedItem() switch (SelectedItem) 13

14 case SELECTEDITEM.NEW: StopMusic(); Game.CurrentLevel = new Level1(); case SELECTEDITEM.HELP: ChangeStatus(MAIMENUSTATUS.HELP); case SELECTEDITEM.CREDITS: ChangeStatus(MAIMENUSTATUS.CREDITS); case SELECTEDITEM.EXIT: Project.GameFramework.WindowForm.Close(); case SELECTEDITEM.BACK: ChangeStatus(MAIMENUSTATUS.MAIN); //Objects of this class represent the menu item in this level class MenuItem : GameObject public bool isselected = false; private float MaximumRotationValue = 0.5f; private float StepRotationValue = 0.02f; private float MinimumRotationValue = -0.3f; public MenuItem(Vector3 NewPosition, Meshes newmeshindex) : base(newposition, newmeshindex) yangle = MaximumRotationValue; public override void Reset() public override void Update(Matrix ParentTransformation) if (isselected) if (yangle > MinimumRotationValue) yangle -= StepRotationValue; else if (yangle < MaximumRotationValue) yangle += StepRotationValue; base.update(parenttransformation); 14

15 Now a main menu is displayed with options: New, Credits, Help, Exit. 15

Session 7. Microsoft and The DigiPen Institute of Technology Webcast Series

Session 7. Microsoft and The DigiPen Institute of Technology Webcast Series Session 7 Microsoft and The DigiPen Institute of Technology Webcast Series HOW TO USE THIS DOCUMENT This e-textbook has been distributed electronically using the Adobe Portable Document Format (PDF) format.

More information

Session 6. Microsoft and The DigiPen Institute of Technology Webcast Series

Session 6. Microsoft and The DigiPen Institute of Technology Webcast Series Session 6 Microsoft and The DigiPen Institute of Technology Webcast Series HOW TO USE THIS DOCUMENT This e-textbook has been distributed electronically using the Adobe Portable Document Format (PDF) format.

More information

Acrobat 6.0 Standard - Basic Tasks

Acrobat 6.0 Standard - Basic Tasks Converting Office Documents to PDF 1. Create and edit document in Office application (Word, Excel, PowerPoint) 2. Click the Convert to PDF button on the Acrobat toolbar If the buttons are not visible,

More information

Start Visual Studio, start a new Windows Form project under the C# language, name the project BalloonPop MooICT and click OK.

Start Visual Studio, start a new Windows Form project under the C# language, name the project BalloonPop MooICT and click OK. Start Visual Studio, start a new Windows Form project under the C# language, name the project BalloonPop MooICT and click OK. Before you start - download the game assets from above or on MOOICT.COM to

More information

Vision Pointer Tools

Vision Pointer Tools Vision Pointer Tools Pointer Tools - Uses Pointer Tools can be used in a variety of ways: during a Vision Demo to annotate on the master station s screen during a Remote Control session to annotate on

More information

Adobe Acrobat DC for Legal Professionals - Quick Reference Guide

Adobe Acrobat DC for Legal Professionals - Quick Reference Guide Adobe Acrobat DC for Legal Professionals - Quick Reference Guide Adobe Acrobat is an important tool in the legal field giving you the ability to create, view, and edit PDF (portable document format) documents.

More information

Getting Started with Telecommunications Online Billing

Getting Started with Telecommunications Online Billing Technology Help Desk 412 624-HELP [4357] http://technology.pitt.edu Getting Started with Telecommunications Online Billing The Departmental Online Phone Billing system allows you to view bills for your

More information

To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox.

To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox. To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox. 1 of 12 CHOOSE THE DATES TAB TO: 1. Set the schedule s Date Range.

More information

HOW TO UTILIZE MICROSOFT WORD TO CREATE A CLICKABLE ADOBE PORTABLE DOCUMENT FORMAT (PDF)

HOW TO UTILIZE MICROSOFT WORD TO CREATE A CLICKABLE ADOBE PORTABLE DOCUMENT FORMAT (PDF) HOW TO UTILIZE MICROSOFT WORD TO CREATE A CLICKABLE ADOBE PORTABLE DOCUMENT FORMAT (PDF) This tutorial expects a basic familiarity with Word 2010. If you can open a document, navigate tabs within a document,

More information

Start Visual Studio and create a new windows form application under C# programming language. Call this project YouTube Alarm Clock.

Start Visual Studio and create a new windows form application under C# programming language. Call this project YouTube Alarm Clock. C# Tutorial - Create a YouTube Alarm Clock in Visual Studio In this tutorial we will create a simple yet elegant YouTube alarm clock in Visual Studio using C# programming language. The main idea for this

More information

Layers. About PDF layers. Show or hide layers

Layers. About PDF layers. Show or hide layers 1 Layers About PDF layers You can view, navigate, and print layered content in PDFs created from applications such as InDesign, AutoCAD, and Visio. You can control the display of layers using the default

More information

Courseload 2.0 Documentation

Courseload 2.0 Documentation Courseload 2.0 Documentation Table of Contents What is Courseload?... 3 Using Courseload... 3 Requirements for Your Computer... 3 Installing the Chrome Frame Plugin... 3 Allowing Mixed Content on Internet

More information

Google SketchUp/Unity Tutorial Basics

Google SketchUp/Unity Tutorial Basics Software used: Google SketchUp Unity Visual Studio Google SketchUp/Unity Tutorial Basics 1) In Google SketchUp, select and delete the man to create a blank scene. 2) Select the Lines tool and draw a square

More information

Start Visual Studio, create a new project called Helicopter Game and press OK

Start Visual Studio, create a new project called Helicopter Game and press OK C# Tutorial Create a helicopter flying and shooting game in visual studio In this tutorial we will create a fun little helicopter game in visual studio. You will be flying the helicopter which can shoot

More information

myngconnect.com Teacher User Manual

myngconnect.com Teacher User Manual myngconnect.com Teacher User Manual Table of Contents Teacher & Student eeditions... 2 Resources... 6 Accessing Resources... 6 Digital Library... 6 Teacher Resource Directory... 7 Assessment Resource Directory...

More information

This is the empty form we will be working with in this game. Look under the properties window and find the following and change them.

This is the empty form we will be working with in this game. Look under the properties window and find the following and change them. We are working on Visual Studio 2010 but this project can be remade in any other version of visual studio. Start a new project in Visual Studio, make this a C# Windows Form Application and name it zombieshooter.

More information

CLEAR TOOL... 7 BASIC NAVIGATION... 7 PAGE SORTER... 7

CLEAR TOOL... 7 BASIC NAVIGATION... 7 PAGE SORTER... 7 Interwrite Workspace WHAT IS WORKSPACE?...2 INSTALLATION...2 SETUP...2 CONNECTING DEVICES... 2 NAMING DEVICES... 3 CALIBRATING DEVICES... 3 THE PEN...3 INTERACTIVE MODE...4 THE TOOLBAR...4 MOVING THE TOOLBAR...

More information

Creating Fill-able Forms using Acrobat 7.0: Part 1

Creating Fill-able Forms using Acrobat 7.0: Part 1 Creating Fill-able Forms using Acrobat 7.0: Part 1 The first step in creating a fill-able form in Adobe Acrobat is to generate the form with all its formatting in a program such as Microsoft Word. Then

More information

Coordinator of Education and Training Programs

Coordinator of Education and Training Programs l Coordinator of Education and Training Programs Celcat Entering Timetable sessions Once the roll creation and EFT have been processed in UE you will need to allow at least 15 minutes for the data to flow

More information

Form Properties Window

Form Properties Window C# Tutorial Create a Save The Eggs Item Drop Game in Visual Studio Start Visual Studio, Start a new project. Under the C# language, choose Windows Form Application. Name the project savetheeggs and click

More information

Table of Contents. Chapter 2. Looking at the Work Area

Table of Contents. Chapter 2. Looking at the Work Area Table of Contents... 1 Opening a PDF file in the work area... 2 Working with Acrobat tools and toolbars... 4 Working with Acrobat task buttons... 13 Working with the navigation pane... 14 Review... 18

More information

Windows 10 - Starter Guide

Windows 10 - Starter Guide Windows 10 - Starter Guide Logging on When the logon screen appears press Ctrl + Alt + Delete then OK. Enter your password then press Enter. Note: Your username does not need to be entered unless switch

More information

Frequency tables Create a new Frequency Table

Frequency tables Create a new Frequency Table Frequency tables Create a new Frequency Table Contents FREQUENCY TABLES CREATE A NEW FREQUENCY TABLE... 1 Results Table... 2 Calculate Descriptive Statistics for Frequency Tables... 6 Transfer Results

More information

Adobe Acrobat Reader 4.05

Adobe Acrobat Reader 4.05 Adobe Acrobat Reader 4.05 1. Installing Adobe Acrobat Reader 4.05 If you already have Adobe Acrobat Reader installed on your computer, please ensure that it is version 4.05 and that it is Adobe Acrobat

More information

Using Online Help. About the built-in help features Using Help Using the How To window Using other assistance features

Using Online Help. About the built-in help features Using Help Using the How To window Using other assistance features Using Online Help About the built-in help features Using Help Using the How To window Using other assistance features About the built-in help features Adobe Reader 6.0 offers many built-in features to

More information

Center for Faculty Development and Support Creating Powerful and Accessible Presentation

Center for Faculty Development and Support Creating Powerful and Accessible Presentation Creating Powerful and Accessible Presentation PowerPoint 2007 Windows Tutorial Contents Create a New Document... 3 Navigate in the Normal View (default view)... 3 Input and Manipulate Text in a Slide...

More information

You can call the project anything you like I will be calling this one project slide show.

You can call the project anything you like I will be calling this one project slide show. C# Tutorial Load all images from a folder Slide Show In this tutorial we will see how to create a C# slide show where you load everything from a single folder and view them through a timer. This exercise

More information

THE AMERICAN LAW INSTITUTE Continuing Legal Education. Adobe Acrobat for Lawyers October 4, 2017 Video Webcast Studio Recorded August 3, 2017

THE AMERICAN LAW INSTITUTE Continuing Legal Education. Adobe Acrobat for Lawyers October 4, 2017 Video Webcast Studio Recorded August 3, 2017 1 THE AMERICAN LAW INSTITUTE Continuing Legal Education Adobe Acrobat for Lawyers October 4, 2017 Video Webcast Studio Recorded August 3, 2017 By Craig Brody C. Brody Associates, LLC Philadelphia, Pennsylvania

More information

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

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

More information

A GET YOU GOING GUIDE

A GET YOU GOING GUIDE A GET YOU GOING GUIDE To Your copy here TextHELP Read and Write 11 June 2013 Advanced 10.31.34 1 Learning Support Introduction to TextHELP Read & Write 11 Advanced TextHELP Read and Write is a tool to

More information

Instructor: Clara Knox. Reference:

Instructor: Clara Knox. Reference: Instructor: Clara Knox Reference: http://www.smith.edu/tara/cognos/documents/query_studio_users_guide.pdf Reporting tool for creating simple queries and reports in COGNOS 10.1, the web-base reporting solution.

More information

Enhancing PDF Documents - Adobe Acrobat DC Classroom in a Book (2015)

Enhancing PDF Documents - Adobe Acrobat DC Classroom in a Book (2015) Enhancing PDF Documents - Adobe Acrobat DC Classroom in a Book (2015) 17-21 minutes 4. Enhancing PDF Documents Lesson overview In this lesson, you ll do the following: Rearrange pages in a PDF document.

More information

ENGAGEMENT SERVICES. Cengage YouBook: Instructor Guide for WebAssign. Accessing the Cengage YouBook: With the Cengage YouBook, you can:

ENGAGEMENT SERVICES. Cengage YouBook: Instructor Guide for WebAssign. Accessing the Cengage YouBook: With the Cengage YouBook, you can: ENGAGEMENT SERVICES Cengage YouBook: Instructor Guide for WebAssign The Cengage YouBook is an engaging and customizable ebook that lets you tailor a digital textbook to match the way you teach your course

More information

ClaroPDF is an App for reading and commenting on PDF files and documents. ClaroPDF speaks back accessible text PDF files and documents with highqualit

ClaroPDF is an App for reading and commenting on PDF files and documents. ClaroPDF speaks back accessible text PDF files and documents with highqualit ClaroPDF User Guide ClaroPDF is an App for reading and commenting on PDF files and documents. ClaroPDF speaks back accessible text PDF files and documents with highquality speech and highlighting so you

More information

Creating tables of contents

Creating tables of contents Creating tables of contents A table of contents (TOC) can list the contents of a book, magazine, or other publication; display a list of illustrations, advertisers, or photo credits; or include other information

More information

How to use the Acrobat interface and basic navigation

How to use the Acrobat interface and basic navigation How to use the Acrobat interface and basic navigation The work area (Figure 1) includes a document pane that displays Adobe PDF documents and a navigation pane (on the left) that helps you browse through

More information

SpeechClass User Guide for Students A Speaker s Guidebook, Fourth Edition

SpeechClass User Guide for Students A Speaker s Guidebook, Fourth Edition SpeechClass User Guide for Students A Speaker s Guidebook, Fourth Edition Getting Started with SpeechClass for A Speaker s Guidebook, Fourth Edition Table of Contents Overview... 1 Getting Help... 1 System

More information

Read Now In-Browser Reader Guide

Read Now In-Browser Reader Guide Read Now In-Browser Reader Guide Table of Contents Navigation... 2 Page Forward and Backward... 2 Table of Contents... 2 Logging Out... 3 Display Settings... 3 Font Options... 3 Bookmarks... 4 Notes, Highlights,

More information

Adobe Acrobat 5.0. Overview. Internet & Technology Training Services Miami Dade County Public Schools

Adobe Acrobat 5.0. Overview. Internet & Technology Training Services Miami Dade County Public Schools Adobe Acrobat 5.0 Overview Internet & Technology Training Services Miami Dade County Public Schools Preparing Microsoft Office Documents in.pdf Format Converting Documents to.pdf Format Using the Tool

More information

Acrobat X Professional

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

More information

We are going to use some graphics and found a nice little batman running GIF, off course you can use any image you want for the project.

We are going to use some graphics and found a nice little batman running GIF, off course you can use any image you want for the project. C# Tutorial - Create a Batman Gravity Run Game Start a new project in visual studio and call it gravityrun It should be a windows form application with C# Click OK Change the size of the to 800,300 and

More information

INSTRUCTIONS. How to use Makes Sense Strategies- The Works! TM. How to load Makes Sense Strategies- The Works! TM

INSTRUCTIONS. How to use Makes Sense Strategies- The Works! TM. How to load Makes Sense Strategies- The Works! TM INSTRUCTIONS Makes Sense Strategies TM (MSS) is composed of an extensive set of Microsoft Word TM and Power Point TM documents that are accessed from links embedded onto Adobe PDF files and thus, is not

More information

DCN Next Generation Automatic Camera Control. en Software User Manual LBB 4162/00 LBB 4188/00

DCN Next Generation Automatic Camera Control. en Software User Manual LBB 4162/00 LBB 4188/00 DCN Next Generation Automatic Camera Control en Software User Manual LBB 4162/00 LBB 4188/00 About this manual This user manual is divided into three chapters. Chapters 1 and 2 provide background information

More information

Intermediate PowerPoint 2000

Intermediate PowerPoint 2000 Intermediate PowerPoint 2000 Academic Computing Support Information Technology Services Tennessee Technological University September 2000 1. Opening PowerPoint In the PC labs, under the Start menu, select

More information

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2 TABLE OF CONTENTS 1 OVERVIEW...1 2 WEB VIEWER DEMO ON DESKTOP...1 2.1 Getting Started... 1 2.1.1 Toolbar... 1 2.1.2 Right-click Contextual Menu... 2 2.1.3 Navigation Panels... 2 2.1.4 Floating Toolbar...

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

WILEY DIGITAL TEXTBOOKS User Guide

WILEY DIGITAL TEXTBOOKS User Guide WILEY DIGITAL TEXTBOOKS User Guide Page 1 CONTENT 1 System Requirements..3 2 Benefits of Digtial Textbooks.. 4 3 How to Access Your Digital Textbooks 5 4 Features of VitalSource Bookshelf.9 5 VitalSource

More information

Guide to Make PDFs ADA Compliant

Guide to Make PDFs ADA Compliant Guide to Make PDFs ADA Compliant Please note that the following instructions can also be used to convert a PowerPoint file to a PDF. Publisher files do not give you the ability to check for ADA Compliance

More information

OnPoint s Guide to MimioStudio 9

OnPoint s Guide to MimioStudio 9 1 OnPoint s Guide to MimioStudio 9 Getting started with MimioStudio 9 Mimio Studio 9 Notebook Overview.... 2 MimioStudio 9 Notebook...... 3 MimioStudio 9 ActivityWizard.. 4 MimioStudio 9 Tools Overview......

More information

Getting Started. Introducing TorontoMLS... 2 Starting TorontoMLS and Logging Off... 3 Navigating TorontoMLS... 4 Get & Print Help...

Getting Started. Introducing TorontoMLS... 2 Starting TorontoMLS and Logging Off... 3 Navigating TorontoMLS... 4 Get & Print Help... Getting Started Introducing TorontoMLS... 2 Starting TorontoMLS and Logging Off... 3 Navigating TorontoMLS... 4 Get & Print Help... 5 Introducing TorontoMLS TorontoMLS (TMLS) is an Internet based MLS system

More information

Using Help Contents Index Back 1

Using Help Contents Index Back 1 Using Online Help Using Help Contents Index Back 1 Using Online Help About the built-in help features Adobe Reader 6.0 offers many built-in features to assist you while you work, including the Help window

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

Lehigh University Library & Technology Services

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

More information

C:\homeworks\PenAttention_v13_src\PenAttention_v13_src\PenAttention4\PenAttention\PenAttention.cs 1 using System; 2 using System.Diagnostics; 3 using

C:\homeworks\PenAttention_v13_src\PenAttention_v13_src\PenAttention4\PenAttention\PenAttention.cs 1 using System; 2 using System.Diagnostics; 3 using 1 using System; 2 using System.Diagnostics; 3 using System.Collections.Generic; 4 using System.ComponentModel; 5 using System.Data; 6 using System.Drawing; 7 using System.Text; 8 using System.Windows.Forms;

More information

my news on the go Tutorial

my news on the go Tutorial my news on the go Multi-Media Media Electronic Edition Tutorial What is my news on the go? My News On the Go is an electronic replica of the newspaper accessed through the internet with a secure login

More information

Using PowerPoint 2011 at Kennesaw State University

Using PowerPoint 2011 at Kennesaw State University Using PowerPoint 2011 at Kennesaw State University Creating Presentations Information Technology Services Outreach and Distance Learning Technologies Copyright 2011 - Information Technology Services Kennesaw

More information

Introduction. Download. SMARTBoard

Introduction. Download.   SMARTBoard Page 1 of 21 SMARTBoard Introduction Interactive whiteboards are an excellent way to involve students in classroom learning by providing the look and feel of a regular whiteboard with computer-based technology

More information

Now find the button component in the tool box. [if toolbox isn't present click VIEW on the top and click toolbox]

Now find the button component in the tool box. [if toolbox isn't present click VIEW on the top and click toolbox] C# Tutorial - Create a Tic Tac Toe game with Working AI This project will be created in Visual Studio 2010 however you can use any version of Visual Studio to follow along this tutorial. To start open

More information

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher For technical support call 1-800-936-6899 GeographyPortal Quick Start for Pulsipher, World Regional

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

These are meant to be used as desktop reminders or cheat sheets for using Read&Write Gold. To use. your Print Dialog box as shown

These are meant to be used as desktop reminders or cheat sheets for using Read&Write Gold. To use. your Print Dialog box as shown These are meant to be used as desktop reminders or cheat sheets for using Read&Write Gold. To use them Print as HANDOUTS by setting your Print Dialog box as shown Then Print and Cut up as individual cards,

More information

ECB Digital - Click 3 (4th Grade)

ECB Digital - Click 3 (4th Grade) ECB Digital - Click 3 (4th Grade) There are several ways to navigate around the Whiteboard Digital Books: 1 Go to a chosen unit or feature by clicking on a button on the main menu. 2 Go to a specific page

More information

BusinessObjects Frequently Asked Questions

BusinessObjects Frequently Asked Questions BusinessObjects Frequently Asked Questions Contents Is there a quick way of printing together several reports from the same document?... 2 Is there a way of controlling the text wrap of a cell?... 2 How

More information

Introduction to Adobe Acrobat X. Ken Dickinson Bay Area Computer Training

Introduction to Adobe Acrobat X. Ken Dickinson Bay Area Computer Training Introduction to Adobe Acrobat X Ken Dickinson Bay Area Computer Training www.bactrain.com Table of Contents What s the best way to create a PDF?... 3 Convert Microsoft Word, PowerPoint, and Excel files

More information

Consider Communicating via PDF

Consider Communicating via PDF Consider Communicating via PDF Within the Law School, documents are often collaboratively drafted and comments and suggestions are requested from reviewers on various drafts. In the past, these documents

More information

Top Producer 7i Tips & Tricks Volume 1

Top Producer 7i Tips & Tricks Volume 1 Top Producer 7i Tips & Tricks Volume 1 TOP PRODUCER Systems Inc. 1 Table of Contents 1 Using Quick Action Commands...3 1.1 Use the Commands Instead of the Menu s...3 2 Scrolling Within a Long List...5

More information

HistoryClass User Guide for Students America s History, Sixth Edition. Henretta, Brody, and Dumenil

HistoryClass User Guide for Students America s History, Sixth Edition. Henretta, Brody, and Dumenil HistoryClass User Guide for Students America s History, Sixth Edition Henretta, Brody, and Dumenil Getting Started with HistoryClass for America s History, Sixth Edition Table of Contents Overview...1

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Welcome to the new Contact Management. The login process has changed from classic Contact Management to the new. This guide will walk you through those changes and help you begin

More information

Bridgit Conferencing Software User s Guide. Version 3.0

Bridgit Conferencing Software User s Guide. Version 3.0 Bridgit Conferencing Software User s Guide Version 3.0 ii Table Of Contents Introducing Bridgit Conferencing Software... 1 System Requirements... 1 Getting Bridgit Conferencing Software... 2 The Bridgit

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

Frequently Asked Technical Questions

Frequently Asked Technical Questions Frequently Asked Technical Questions The first step in resolving any technical problem is to make sure that you meet the technical requirements. A basic requirement for taking a PLS online course is to

More information

SimLab 3D PDF Settings. 3D PDF Settings

SimLab 3D PDF Settings. 3D PDF Settings 3D PDF Settings 1 3D PDF Settings dialog enables the user to control the generated 3D PDF file. The dialog can be opened by clicking the PDF settings menu. Page Settings Prepend the following file to 3D

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

Adobe Reader (AR) and Internet Explorer (IE) Browser Settings. Adobe Reader and Internet Explorer Browser settings

Adobe Reader (AR) and Internet Explorer (IE) Browser Settings. Adobe Reader and Internet Explorer Browser settings Adobe Reader and Internet Explorer Browser settings Table of Contents 1. INTERNET EXPLORER (IE) BROWSER SETTINGS... 2 1.1 Locating the menu bar... 2 1.2 Clearing cache... 2 1.3 Allow pop-ups from *.cap.org...

More information

Accessible Document Practices in Adobe Acrobat

Accessible Document Practices in Adobe Acrobat Accessible Document Practices in Adobe Acrobat Todd M. Weissenberger, University of Iowa Adobe Acrobat lets you create documents in Portable Document Format (PDF) from a variety of sources. Acrobat PDFs

More information

Manage and Edit Sessions

Manage and Edit Sessions Manage and Edit Sessions With TurningPoint, you can stop and save a session, and pick up where you left off at a later time. You can also use a TurningPoint setting to create back-up files of your session.

More information

EMPLOYEE ACCESS. Updated 04/12/12 1 of 13

EMPLOYEE ACCESS. Updated 04/12/12 1 of 13 If you are not a current Skyward user, you will have to email Cindy Crace (ccrace@gcs.k12.in.us) or Sandy Cook (sacook@gcs.k12.in.us) to obtain your Login and Password. If you are a current Skyward user,

More information

Creating a PowerPoint Presentation

Creating a PowerPoint Presentation powerpoint 1 Creating a PowerPoint Presentation Getting Started 1. Open PowerPoint from the "Start" "Programs" Microsoft Office directory. 2. When starting PowerPoint, it usually starts with a new blank

More information

User s Manual Software Version 4.0

User s Manual Software Version 4.0 SwiftText Word Expander is a program that improves typing speed and efficiency within any word processor or text editor. The program allows the user to type abbreviated codes that are automatically replaced

More information

Technical Users Guide for the Performance Measurement Accountability System. National Information Center For State and Private Forestry.

Technical Users Guide for the Performance Measurement Accountability System. National Information Center For State and Private Forestry. PMAS Technical Users Guide for the Performance Measurement Accountability System National Information Center For State and Private Forestry Prepared By Peter Bedker Release 2 October 1, 2002 PMAS User

More information

The data files on the Data DVD were prepared using the Windows 7 operating CHAPTER ONE. Objectives. Getting Started. Data Files

The data files on the Data DVD were prepared using the Windows 7 operating CHAPTER ONE. Objectives. Getting Started. Data Files CHAPTER ONE Objectives After completing this chapter, you should be able to: use the QuickBooks data files on the Data DVD access QuickBooks data files update your QuickBooks company fi le understand the

More information

4. Fill in your information. Choose an address for your PBworks wiki. Be sure to choose For Education as your workspace type.

4. Fill in your information. Choose an address for your PBworks wiki. Be sure to choose For Education as your workspace type. Creating Your First Wiki with PB Works 1. Go to the PB Wiki Site: http://www.pbworks.com 2. Click Sign Up 3. Select the Basic Plan which is the free plan and includes 2 GB of storage space. 4. Fill in

More information

Optimizing GRITS. In this chapter:

Optimizing GRITS. In this chapter: Optimizing GRITS In this chapter: Creating Favorites and Shortcuts Optimizing Browser Performance Running Reports with Acrobat Reader Efficient Screen Navigation Creating Favorites and Shortcuts To access

More information

Add notes to a document

Add notes to a document Add notes to a document WX and AX Add notes to a document ApplicationXtender Web Access (WX) and ApplicationXtender Document Manager (AX) In ApplicationXtender, you can mark up a document using the annotation

More information

For Windows Microsoft Corporation. All rights reserved.

For Windows Microsoft Corporation. All rights reserved. For Windows 1 About Skype for Business... 4 Skype for Business Window... 5 Audio... 6 Set up your audio device... 6 Make a call... 6 Answer a call... 7 Use audio call controls... 7 Check voicemail... 8

More information

This guide will help you with many of the basics of operation for your Epson 485wi BrightLink Projector with interactive functionality.

This guide will help you with many of the basics of operation for your Epson 485wi BrightLink Projector with interactive functionality. This guide will help you with many of the basics of operation for your Epson 485wi BrightLink Projector with interactive functionality. If you need further assistance with questions, you can refer to the

More information

PowerPoint Essentials 1

PowerPoint Essentials 1 PowerPoint Essentials 1 LESSON SKILL MATRIX Skill Exam Objective Objective Number Working with an Existing Presentation Change views of a presentation. Insert text on a slide. 1.5.2 2.1.1 SOFTWARE ORIENTATION

More information

South Dakota Department of Transportation January 10, 2014

South Dakota Department of Transportation January 10, 2014 South Dakota Department of Transportation January 10, 2014 USER GUIDE FOR ELECTRONIC PLANS REVIEW AND PDF DOCUMENT REQUIREMENTS FOR CONSULTANTS Contents Page(s) What Is A Shared Electronic Plan Review

More information

Palm Reader Handbook

Palm Reader Handbook Palm Reader Handbook Copyright 2000-2002 Palm, Inc. All rights reserved. Graffiti, HotSync, the Palm logo, and Palm OS are registered trademarks of Palm, Inc. The HotSync logo and Palm are trademarks of

More information

Introduction to Microsoft FrontPage

Introduction to Microsoft FrontPage Platform Windows PC Ref no: ins069 Date: 2006 Version: 1 Authors: S. Coates Introduction to Microsoft FrontPage What is Microsoft FrontPage? Microsoft FrontPage is an web authoring tool that can be used

More information

DigiPen Institute of Technology

DigiPen Institute of Technology DigiPen Institute of Technology Presents Session Four: Game Design Elements DigiPen Institute of Technology 5001 150th Ave NE, Redmond, WA 98052 Phone: (425) 558-0299 www.digipen.edu 2005 DigiPen (USA)

More information

Introduction. Getting to Know Word The Ribbon. Word 2010 Getting Started with Word. Video: Exploring Your Word 2010 Environment.

Introduction. Getting to Know Word The Ribbon. Word 2010 Getting Started with Word. Video: Exploring Your Word 2010 Environment. Word 2010 Getting Started with Word Introduction Page 1 Word 2010 is a word processor that allows you to create various types of documents such as letters, papers, flyers, faxes and more. In this lesson,

More information

Getting the most out of Microsoft Edge

Getting the most out of Microsoft Edge Microsoft IT Showcase Getting the most out of Microsoft Edge Microsoft Edge, the new browser in Windows 10, is designed to deliver a better web experience. It s faster, safer, and more productive designed

More information

Learn more about Pages, Keynote & Numbers

Learn more about Pages, Keynote & Numbers Learn more about Pages, Keynote & Numbers HCPS Instructional Technology May 2012 Adapted from Apple Help Guides CHAPTER ONE: PAGES Part 1: Get to Know Pages Opening and Creating Documents Opening a Pages

More information

Welcome & Introduction

Welcome & Introduction Welcome & Introduction Welcome to ebeam Interactive Suite 3. Overview ebeam Interactive Suite 3 allows you to create lessons with provided resources and enhances curriculum delivery with dynamic annotation

More information

Getting Started with Milestones Professional

Getting Started with Milestones Professional Create a new Schedule: Use the default template. Or Choose the Setup Wizard. (File/New). Or Choose a predesigned template. NEXT: Follow the tips below. Set the Schedule Start and End Dates: Click the Toolbar

More information

Add notes to a document

Add notes to a document Add notes to a document WX and AX Add notes to a document Web Access (WX) and Document Manager (AX) In, you can mark up a document using the annotation toolbar. With these tools, you are able to add typewritten

More information

Microsoft FrontPage. An Introduction to. Lecture No.1. Date: April Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian

Microsoft FrontPage. An Introduction to. Lecture No.1. Date: April Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian An Introduction to Microsoft FrontPage Lecture No.1 Date: April 20. 2007 Instructor: Mr. Mustafa Babagil Prepared By: Nima Hashemian 2006 An Introduction to FrontPage Mathematics Department Eastern Mediterranean

More information

Read & Write Gold 11 Text to Speech Software

Read & Write Gold 11 Text to Speech Software Read & Write Gold 11 Text to Speech Software Toolbar You can dock the toolbar to the top, left and right of the screen by dragging it. If you want to undock the tool bar, click on the anchor icon Each

More information

How to create interactive documents

How to create interactive documents Adobe InDesign Guide How to create interactive documents You can use Adobe InDesign to create dynamic web content or interactive documents. InDesign supports export to web-ready HTML or interactive PDF.

More information