Alice 3 Workshop. CS & IT Irvine, CA July 9, Copyright 2012 Wanda Dann, Don Slater, Steve Cooper

Size: px
Start display at page:

Download "Alice 3 Workshop. CS & IT Irvine, CA July 9, Copyright 2012 Wanda Dann, Don Slater, Steve Cooper"

Transcription

1 Alice 3 Workshop CS & IT Irvine, CA July 9, 2012

2 Research Group Wanda Dann Steve Cooper Don Slater Jacobo Carrasquel Dennis Cosgrove Dave Culyba Laura Paoletti Matt May Cleah Schlueter

3 Sponsors

4 Agenda Today Alice 3: A Tour of the Interface Scene Setup & Motion Control A simple Alice program An Alice 3 program in Java (using Netbeans)

5 Alice 3 Workshop Installing Alice 3

6 Alice 3 installers

7 Archive Archive of versions

8 Universal Zip Download once, install on different systems

9 Start files Start file varies by system:

10 Troubleshooting Users have reported some problems with tablet PCs and higher-end Vista systems Try decreasing Color resolution (32 to 16) hardware acceleration Try updating video driver (from video card manufacturer s web site)

11 If will not install If Alice 3 does not install on your system, it will run on a USB drive

12 Alice 3 Installed Finding Alice 3 on your machine PC Mac C:\Program Files\Alice3Beta\Alice.bat /Applications/Alice3Beta/Alice Note: Will create an icon on the desktop of Windows machines if option selected Watch for it.

13 Alice3 Directory Contains default directories for projects and classes created in Alice 3 Finding this Alice3 directory on your machine PC Mac \My Documents\Alice3 /<user home directory>/alice3

14 Select a template

15 Code Editor

16 Two editors

17 Scene Editor

18 Menu Bar

19 File Menu

20 Setting Preferences AP/CS1

21 Setting Preferences Pre-AP, CS0, CS-1

22 Major Difference

23 Alice 3 Workshop Problem Solving

24 Objectives Make it easier to learn/teach computer programming Retain students for entire term Attract students to computing majors/minors Enable students to succeed in successive courses Make the course engaging and creative

25 Traditional Problem Solving Read and understand a problem or task specification Design a solution (develop an algorithm) Implement (code) Test Revise, as needed

26 Problem Solving in Alice The problem is: Create an animation to.. Read and understand a problem in the context of creating an animation initial scene construction. Design a solution Implement write the program Test Revise, as needed

27 Example Finding Nemo trailer Problem: Create 5 10 second animation that shows the reaction of Marlin (a small fish) when he meets a shark and Marlin s reaction to the shark when the shark frightens the fish.

28 Next step Read and understand the problem or task specification Design a solution Develop an algorithm Scene setup Implement (code) Test Revise, as needed

29 Designing a Solution in Alice To create a design, we borrow the idea of storyboards from professional animators at Disney, Pixar, etc. Pixar demo: How We Do It

30 Visual Storyboard Successive frames for major actions in a story.

31 Textual Storyboard - algorithm Do in order Scene opens with Marlin and Dori talking Marlin says Have you ever seen a shark? Dory says No, and I don t want to Shark suddenly appears Marlin tries to find a place to hide turns to face the treasure chest swims to the treasure chest swims around the treasure chest swims into the treasure chest Treasure chest lid closes

32 Next step Read and understand the problem or task specification Design a solution Develop an algorithm Scene setup Implement (code) Test Revise, as needed

33 Scene setup

34 Alice 3 Workshop Scene Setup

35 Next step Read and understand the problem or task specification Design a solution Develop an algorithm Scene setup Implement (code) Test Revise, as needed

36 Textual Storyboard - algorithm Do in order Scene opens with Marlin and Dori talking Marlin says Have you ever seen a shark? Dory says No, and I don t want to Shark suddenly appears Marlin tries to find a place to hide turns to face the treasure chest swims to the treasure chest swims around the treasure chest swims into the treasure chest Treasure chest lid closes

37 Goal: Set up initial scene Open SharkEncounter.a3p Most of our scene has already been setup We are going to add Marlin, Bruce the shark, and a treasure chest to the scene Learning to set up a scene has a learning curve -- play with the scene editor an hour or so-- later!

38 Hints To avoid loss of work Save the project world every minutes, using a progressive numbering pattern world1.a3p, world2.a3p, world3.a3p, etc. Use Undo/Redo buttons Set a camera marker at the original camera position before doing anything else!

39 Undo / Redo Ability to undo and redo actions during scene setup Scene Setup Edit Menu (Mac) Edit Menu (Windows)

40 Set a camera marker First step in working with the Scene Editor: Create a camera marker at its original starting position In the Scene Editor, expand the Marker section of the Control Panel

41 Button: Create camera marker

42 Rename By default the marker is named camera_<color> Rename it to make it meaningful

43 Gallery Organized by skeletal structure and mobility mode Note: Models still being developed

44 Classes The gallery contains folders Each folder contains files that define Alice s 3D models, which are classes Each class defines a type of object An object is an instance of the class

45 Adding an object to scene Create new instance of a class Click on thumbnail Enter name of object Click on OK

46 Object tree When an object is added to the scene, a tile is added to the object tree in the scene editor.

47 Object Properties for a particular object in the scene

48 Mouse & handles Alice 3 provides handles for mouse positioning

49 Handle Styles: Default Turn object horizontally Move object on the horizontal plane

50 Handle Styles: Rotate Rotate object in six directions

51 Handle Styles: Reposition Move object vertically or horizontally

52 Handle Styles: Resize Resize object in all dimensions proportionately

53 Handle Styles Turn object horizontally Move object on the horizontal plane Copyright 2012 Alice += Java Wanda Dann, Don Slater

54 One shots We want to position the shark toward the back of the scene.

55 Adjust fog density Fog may be too dense/too light

56 Save the world In menu bar: File/Save as This is the world that we will use in continuing presentations in this workshop.

57 Alice 3 Workshop Scene Setup Techniques for positioning objects

58 Recall: initial scene Scene setting is enhanced with a treasure chest, cave, sunken ship, sea coral The shark is hidden

59 Camera navigation arrows Moving the camera is often necessary for positioning objects in a scene.

60 Return camera to startposition To move the camera back to its original position, use the reset button for the red camera (startposition)

61 Relative positioning To prepare for hiding the shark, first reposition marlin and dory so they are close together and (more or less) facing one another. Also, reposition bruce (the shark) close to and facing the fish.

62 Camera viewpoints Alice 3 provides a menu of camera viewpoints for relative positioning

63 Top view

64 Use Snap Can align objects in the scene using snap-togrid mode

65 Mark the shark s position Select the shark Click on Create marker at <shark name> button Name the marker and click on OK

66 Hide the shark To hide the shark move it toward the back of the scene (the fog density will hide it).

67 One shots Procedural methods (actions) can be used one-time-only to position objects in the Scene Editor

68 Cascading menus

69 Add the treasure chest To quickly find the treasure chest, use search

70 Your turn Use one-shots to position the treasure chest in an upright position, exactly 10 meters from marlin. move the treasure chest to marlin orient the treasure chest upright have the treasure chest face the camera move the treasure chest backward 10 meters

71 Open the lid of the chest Select the lid of the treasure chest

72 Open the lid of the chest Use the menu to turn the lid backwards ¼ rotation

73 Return to code editor Click on edit code (lower right of scene)

74 Save the world In menu bar: File/Save as This is a world that we will use in continuing presentations in this workshop.

75 Alice 3 Workshop Implementation

76 Next step Read and understand the problem or task specification Design a solution Develop an algorithm Scene setup Implement (code) Test Revise, as needed

77 Storyboard Algorithm Do in order Dory says Have you ever seen a shark? Marlin says No, and I don t want to Shark suddenly appears Marlin swims to the treasure chest Marlin swims around treasure chest (trying to find a place to hide) The treasure chest lid opens Marlin swims into the treasure chest The treasure chest lid closes

78 Implementation To create an animation, each step in the algorithm must be written as program code using the Code Editor.

79 objecttree & Fields The objecttree is accessed with a dropdown menu, showing the instance fields in this scene

80 Methods Panel Tabs Procedures void methods Functions methods that return a value Properties getters and setters that work with private fields of an object

81 This scene's procedural methods The MyScene class defines procedural methods that execute when the Run button is clicked Setting up a scene (custom and auto-generated) myfirstmethod (the driver)

82 Editor pane for myfirstmethod procedure

83 Action code Dory says Have you ever seen a shark?

84 Drag and drop

85 add detail modify duration The say speech bubble displays for only one second All Alice statements have a default duration of 1 second Use the duration modifier in add detail to change the length of time

86 Your turn Have marlin say No, and I don t want to. Lengthen the duration of the say statement

87 Shark appears

88 add detail modify duration Lengthen the duration of the shark s appearence

89 Alice 3 Workshop Procedures

90 Textual Storyboard - algorithm Do in order Scene opens with Marlin and Dori talking Marlin says Have you ever seen a shark? Dory says No, and I don t want to Shark suddenly appears Marlin tries to find a place to hide turns to face the treasure chest swims to the treasure chest swims around the treasure chest swims into the treasure chest Treasure chest lid closes

91 02. FindingNemoSharkAppears.a3p

92 What next? Do in order Scene opens with Marlin and Dori talking Marlin says Have you ever seen a shark? Dory says No, and I don t want to Shark suddenly appears Marlin tries to find a place to hide turns to face the treasure chest swims to the treasure chest swims around the treasure chest swims into the treasure chest Treasure chest lid closes

93 Stepwise refinement: a plan for swim do in order marlin tail turn left 0.1 m marlin tail turn right 0.2 m marlin tail turn left 0.1 m

94 Access Class panel To declare/edit methods and properties of a class, select the appropriate tile in the Class pull-down menu.

95 Class panel Click the Add Procedure button to declare a new procedural method

96 this All other objects / classes are out of scope (disabled in object tree); this is now an instance of the MyClownFish class

97 this.gettail

98 Create code Note durations of statements add to 1 sec

99 Test Create a statement in the scene s MyFirstMethod to have marlin swim.

100 Observation Marlin s tail turns left and right but he doesn t move forward Need to revise our design and code

101 Concurrency Do together is a control statement where actions may occur at the same time. do together marlin move forward 1 m do in order marlin tail turn left 0.1 m marlin tail turn right 0.2 m marlin tail turn left 0.1 m

102 Updated code

103 Alice 3 Workshop Transition to Java

104 Alice 3 Java Our Approach Problem solving Create a program to.? In the context of animation Engaging, Motivating Transfer to Java using same context Goal: Keep momentum for solving the problem

105 Mediated Transfer Alice 3 provides a concrete context for teaching/learning fundamental concepts The challenge is to mediate the transfer of these concepts from concrete to abstract and other contexts.

106 Option for Java display Window/Preferences/ProgrammingLanguage

107 Code with full Java syntax

108 Plugin For NetBeans

109 Demo, Step 1 Transferring Alice 3 Project

110 Demo, step 2 Type of Project

111 Demo, step 3 File to Import

112 Successful transfer Project should appear in the list of projects (upper left of NetBeans window)

113 Java classes

114 Instantiating Objects

115 myfirstmethod

116 Class definition - Alice

117 Class definition - Netbeans

Duration 30 minutes Notes This tutorial was built using Alice

Duration 30 minutes Notes This tutorial was built using Alice Tutorial 1: Get Started with Alice 3 Overview In this tutorial, you will become familiar with the basic features of Alice 3. You will navigate and use basic features in both the Scene editor and Code editor.

More information

The Alice Scene Editor

The Alice Scene Editor Facilitation Guide The Alice Scene Editor ( http://www.alice.org/resources/lessons/building-a-scene/ ) Summary This facilitation guide is intended to guide the instructor through the introduction of the

More information

The Essentials of Alice

The Essentials of Alice The Essentials of Alice Mrs. Jayne Slease SBMS CTE Computer Science and Animation Credit to Duke Students under the direction of Professor Susan Rodger Duke University May 2009 This tutorial will teach

More information

Chapter 0. Getting Started. Objectives

Chapter 0. Getting Started. Objectives Chapter 0 Getting Started Objectives Install the Java editor Install the Alice environment Setup the Java editor to work with the Alice environment Explain the purpose of Alice Setup an Alice scene Installing

More information

Kids College Computer Game Programming Exploring Alice 3.X and Object-Oriented Programming

Kids College Computer Game Programming Exploring Alice 3.X and Object-Oriented Programming Kids College Computer Game Programming Exploring Alice 3.X and Object-Oriented Programming Alice is a programming language developed by Carnegie Mellon that makes it easy to write objectbased, event driven,

More information

Using PowerPoint - 1

Using PowerPoint - 1 Using PowerPoint - 1 Introduction to the course. Before we start, we need to know what power point is. I m sure most of you know about ppt, but for those of you who may be new to this: [1a-c] When you

More information

3.6: First Person Computer Games

3.6: First Person Computer Games 3.6: First Person Computer Games Projections of 3-D Objects Alice is an educational software program that uses a 3-D environment to teach students programming. If you have not done so already, please download

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

PowerPoint X. 1. The Project Gallery window with the PowerPoint presentation icon already selected. 2. Click on OK.

PowerPoint X. 1. The Project Gallery window with the PowerPoint presentation icon already selected. 2. Click on OK. PowerPoint X Launching PowerPointX 1. Start PowerPointX by clicking on the PowerPoint icon in the dock or finding it in the hard drive in the Applications folder under Microsoft PowerPoint. PowerPoint

More information

Introduction to Alice. Computer Science for High School (CS4HS)

Introduction to Alice. Computer Science for High School (CS4HS) Introduction to Alice Computer Science for High School (CS4HS) Contents 1 Introduction 2 2 Installation 3 2.1 Basic Installation........................... 3 2.2 Advanced Installation........................

More information

potions. The troll doubles in size.

potions. The troll doubles in size. Tutorial 3: Use Procedures and Arguments, Add Rotation and Randomization Overview In this tutorial, you will practice using procedures and arguments to create an animation. You will practice rotating an

More information

Creating an Animated Sea Aquarium/Getting Acquainted with Power Point

Creating an Animated Sea Aquarium/Getting Acquainted with Power Point Creating an Animated Sea Aquarium/Getting Acquainted with Power Point Directions: Power Point is a presentation graphics application program you use to organize and present information. Whether you are

More information

Welcome. Microsoft PowerPoint 2010 Fundamentals Workshop. Faculty and Staff Development Program

Welcome. Microsoft PowerPoint 2010 Fundamentals Workshop. Faculty and Staff Development Program Faculty and Staff Development Program Welcome Microsoft PowerPoint 2010 Fundamentals Workshop Computing Services and Systems Development Phone: 412-624-HELP (4357) Last Updated: 04/19/13 Technology Help

More information

Microsoft Word - Templates

Microsoft Word - Templates Microsoft Word - Templates Templates & Styles. Microsoft Word come will a large amount of predefined templates designed for you to use, it is also possible to download additional templates from web sites

More information

How to Make a Movie in imovie How to Make a Movie Trailer in imovie How to Color Correct a Movie in imovie

How to Make a Movie in imovie How to Make a Movie Trailer in imovie How to Color Correct a Movie in imovie How to Make a Movie in imovie How to Make a Movie Trailer in imovie How to Color Correct a Movie in imovie 1. Make sure you are using the Mac. Make a Movie in imovie 2. If your files are on an external

More information

Animation Charts 4. What is in the Animation Charts 4 Package?

Animation Charts 4. What is in the Animation Charts 4 Package? Animation Charts 4 Toon Boom Animation provides several animation charts designed to help the user animate different actions. The Animation Charts 4 package contains fx animation such as; a smoke cycle,

More information

Introduction to PowerPoint 2007

Introduction to PowerPoint 2007 Introduction to PowerPoint 2007 PowerPoint is one of the programs included in the Microsoft Office suite. It s used to create presentations, also called slide shows, that are typically displayed via a

More information

Microsoft PowerPoint Tutorial

Microsoft PowerPoint Tutorial Microsoft PowerPoint Tutorial Contents Starting MS PowerPoint... 1 The MS PowerPoint Window... 2 Title Bar...2 Office Button...3 Saving Your Work... 3 For the first time... 3 While you work... 3 Backing

More information

Quick Start guide. for windows and mac. creative learning tools. Kar2ouche Quick Start Guide Page 1

Quick Start guide. for windows and mac. creative learning tools. Kar2ouche Quick Start Guide Page 1 Quick Start guide for windows and mac creative learning tools Kar2ouche Quick Start Guide Page 1 Step 1: The Activity Screen Open a Kar2ouche title by double clicking on the icon on your desktop. You will

More information

Reading: Managing Files in Windows 7

Reading: Managing Files in Windows 7 Student Resource 13.4b Reading: Managing Files in Windows 7 Directions: All recent versions of Windows (XP, Vista, Windows 7) have fairly similar ways of managing files, but their graphic user interfaces

More information

Skater World: Part Three

Skater World: Part Three Skater World: Part Three By Deborah Nelson Duke University Under the direction of Professor Susan Rodger June 2009 1 Overview The story continues: We will change the camera view during animation. Also,

More information

Alice 3.0. Copyright 2015 University of North Texas Computer Science & Engineering

Alice 3.0. Copyright 2015 University of North Texas Computer Science & Engineering Alice 3.0 INTRODUCTION Welcome to Alice 3.0! In this section of SuperCamp we will build animations (and maybe even a Game or two) using this very versatile environment. You can download it yourself at

More information

PowerPoint Launching PowerPointX

PowerPoint Launching PowerPointX PowerPoint 2004 Launching PowerPointX 1. Start PowerPoint by clicking on the PowerPoint icon in the dock or finding it in the hard drive in the Applications folder under Microsoft Office 2004. PowerPoint

More information

Getting to Know Keynote on ipad

Getting to Know Keynote on ipad Getting to Know Keynote on ipad This guide will give you the basic instruction of how to use the Keynote App on ipad. Get to Know Keynote Step 1 To create new presentations and find the ones you ve worked

More information

Windows Movie Maker / Microsoft Photo Story Digital Video

Windows Movie Maker / Microsoft Photo Story Digital Video Windows Movie Maker / Microsoft Photo Story Digital Video http://intranet/technology/index.html TRC HELP DESK X5092 April 2006 Photo Story and Movie Maker Microsoft Photo Story 3 allows you to create fantastic

More information

Appendix A Reference: Built-in Methods

Appendix A Reference: Built-in Methods Appendix A Reference: Built-in Methods The Methods panel has three tabs so as to distinguish between procedural methods, functional methods, and methods related to that object's specific properties. Figure

More information

A PRACTICAL GUIDE TO USING WIX TO BUILD A WEBSITE

A PRACTICAL GUIDE TO USING WIX TO BUILD A WEBSITE A PRACTICAL GUIDE TO USING WIX TO BUILD A WEBSITE AN AID TO ENABLE STUDENTS TO UNDERSTAND THE FUNDAMENTELS OF WEBSITE DESIGN WITHIN THE FRAMEWORK OF A WEBSITE PROJECT USING WEB DESIGN TOOLS YANNIS STEPHANOU

More information

The Essentials of Alice (Bunny) By Jenna Hayes under the direction of Professor Susan Rodger Duke University July 2008

The Essentials of Alice (Bunny) By Jenna Hayes under the direction of Professor Susan Rodger Duke University July 2008 The Essentials of Alice (Bunny) By Jenna Hayes under the direction of Professor Susan Rodger Duke University July 2008 This tutorial will teach you how to create a short animation in an Alice world. Follow

More information

POWERPOINT BASICS: MICROSOFT OFFICE 2010

POWERPOINT BASICS: MICROSOFT OFFICE 2010 POWERPOINT BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT POWERPOINT PAGE 03 Microsoft PowerPoint Components SIMPLE TASKS IN MICROSOFT POWERPOINT

More information

Methods (part 1) Alice In Action, Ch 2

Methods (part 1) Alice In Action, Ch 2 CS101 Lecture 08 Methods (part 1) Alice In Action, Ch 2 10 July 2013 Slides Credit: Joel Adams, Alice in Action Objectives Build world-level methods to help organize a story into scenes and shots Use dummies

More information

Digital Documentaries Premiere Elements 8

Digital Documentaries Premiere Elements 8 Premiere Elements 8 Creating a new project Select New Project In the Premiere welcome screen and go to File, New Project on the top menu. Type in a project name and select Browse to locate the Desktop

More information

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15 10 Classes 2 nd Exam Review Lesson - 15 Introduction Windows 7, previous version of the latest version (Windows 8.1) of Microsoft Windows, was produced for use on personal computers, including home and

More information

Using Graphics. Digital Camera. Auto Shapes

Using Graphics. Digital Camera. Auto Shapes AutoShape Using Graphics Internet The following graphic elements are available to enhance your presentation Clip Art AutoShapes Fill effects Shadow effects 3D effects Digital Camera WordArt Digital Camera

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 2011 by its contributors as listed below. You may distribute it and/or modify it under the

More information

Microsoft PowerPoint 2010 Beginning

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

More information

WINDOWS MOVIE MAKER CREATING A VIDEO USING STILL PICTURES

WINDOWS MOVIE MAKER CREATING A VIDEO USING STILL PICTURES WINDOWS MOVIE MAKER CREATING A VIDEO USING STILL PICTURES 1. Open your My Documents folder. Open the My Videos folder. Under File and Folder Tasks, select>make a new folder. All of the pictures/video clips

More information

NetObjects Fusion 10 Build Great Sites.

NetObjects Fusion 10 Build Great Sites. NetObjects Fusion 10 Build Great Sites. Why is Fusion the website builder of choice for novices and professionals alike? The answer is simple: Fusion 10 makes it easy for anyone to create and publish a

More information

Animation Charts 4. What is in the Animation Charts 4 Package?

Animation Charts 4. What is in the Animation Charts 4 Package? Toon Boom Animation provides several animation charts designed to help the user animate different actions. The package contains fx animation such as; a smoke cycle, a bubble bursting, and an electric arc.

More information

Creating a Presentation

Creating a Presentation Creating a Presentation You will need to create a basic presentation before you can work with the advanced features of PowerPoint. 1 Exercise #1 Creating the Basic Presentation (1) Open Microsoft PowerPoint

More information

SeeSnake HQ User Guide

SeeSnake HQ User Guide SeeSnake HQ User Guide SeeSnake HQ Version 1.53.85.1426 23 May 2010 About SeeSnake HQ 3 Digital Technology 3 Installation and Updates 5 Windows XP 5 Windows Vista 5 Windows 7 5 The Home Window 6 Home Toolbar

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 12 July 2016 Page 2 Table of Contents INTRODUCTION... 4 APPLICATION ARCHITECTURE... 5 DOCUMENT OVERVIEW... 6 GENERAL USER INTERFACE... 7 CONTROLS...

More information

Getting Started with Java Using Alice. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Getting Started with Java Using Alice. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Getting Started with Java Using Alice Develop a Complete Animation 1 Copyright 2013, Oracle and/or its affiliates. All rights Objectives This lesson covers the following objectives: Use functional decomposition

More information

Nauticom NetEditor: A How-to Guide

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

More information

Section 1 Getting Started

Section 1 Getting Started Section 1 Getting Started ECDL Section 1 Getting Started By the end of this section you should be able to: Understand PowerPoint Principles Start PowerPoint Use an Installed Template Recognise the Screen

More information

Fundamentals. Training Kit. Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY f presentationproducts.

Fundamentals. Training Kit. Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY f presentationproducts. Fundamentals Training Kit Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY 10001 212.736.6350 f 212.736.6353 presentationproducts.com Table of Contents Getting Started How Does the SMART

More information

ChemSense Studio Client Version 3.0.7

ChemSense Studio Client Version 3.0.7 Quick Start Guide: ChemSense Studio Client Version 3.0.7 January 5, 2005 Comments/Questions/Bug Report? E-mail: chemsense-contact@ctl.sri.com Background The ChemSense Studio Client software supports the

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Outlook 2010 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, etc. Also to set Outlook options. Ribbon: Logically organizes Command Buttons onto Tabs and Groups

More information

Microsoft PowerPoint 2013 Beginning

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

More information

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

Introduction to Events

Introduction to Events Facilitation Guide Introduction to Events ( http://www.alice.org/resources/lessons/introduction-to-events/ ) Summary This guide is intended to guide the facilitator through the creation of events and using

More information

Animating Layers with Timelines

Animating Layers with Timelines Animating Layers with Timelines Dynamic HTML, or DHTML, refers to the combination of HTML with a scripting language that allows you to change style or positioning properties of HTML elements. Timelines,

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 2012 by its contributors as listed below. You may distribute it and/or modify it under the

More information

By Deborah Nelson Duke University Under the edirection ecto of Professor Susan Rodger July 13, 2008

By Deborah Nelson Duke University Under the edirection ecto of Professor Susan Rodger July 13, 2008 BDE tutorial By Deborah Nelson Duke University Under the edirection ecto of Professor Susan Rodger July 13, 2008 Loading the World Open a new world, with any template Save it in a directory that you can

More information

Repetition. Add in Objects. Position Objects. Monkey Eat Bananas Repetition Simple Loops and Conditional Loops for Alice 3

Repetition. Add in Objects. Position Objects. Monkey Eat Bananas Repetition Simple Loops and Conditional Loops for Alice 3 Monkey Eat Bananas Repetition Simple Loops and Conditional Loops for Alice 3 Jonathon Kuo Under the Direction of Dr. Susan Rodger Duke University Repetition We first illustrate simple looping using count,

More information

Monkey Eat Bananas Repetition Simple Loops and Conditional Loops for Alice 3

Monkey Eat Bananas Repetition Simple Loops and Conditional Loops for Alice 3 Monkey Eat Bananas Repetition Simple Loops and Conditional Loops for Alice 3 Jonathon Kuo Under the Direction of Dr. Susan Rodger Duke University June 2017 Adapted from Dr. Rodger s Alice 2 Tutorial, Bunny

More information

Editing in Premiere Pro CC 2015

Editing in Premiere Pro CC 2015 Editing in Premiere Pro CC 2015 Lesson 1: Exploring the Interface Exploring the Interface The Source Window The Program Window The Settings Menu Revealing the Video Scopes The Workspace Bar The Project

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

Keynote 08 Basics Website:

Keynote 08 Basics Website: Website: http://etc.usf.edu/te/ Keynote is Apple's presentation application. Keynote is installed as part of the iwork suite, which also includes the word processing program Pages and the spreadsheet program

More information

To familiarize of 3ds Max user interface and adapt a workflow based on preferences of navigating Autodesk 3D Max.

To familiarize of 3ds Max user interface and adapt a workflow based on preferences of navigating Autodesk 3D Max. Job No: 01 Duration: 8H Job Title: User interface overview Objective: To familiarize of 3ds Max user interface and adapt a workflow based on preferences of navigating Autodesk 3D Max. Students should be

More information

User Guide. Chapter 6. Teacher Pages

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

More information

1 Interface Fundamentals

1 Interface Fundamentals 1 Interface Fundamentals Windows The Media Composer interface is focused on three primary windows: the Composer, the Timeline and the Project. The Composer window contains the source and record monitors

More information

Microsoft PowerPoint Tutorial

Microsoft PowerPoint Tutorial Microsoft PowerPoint Tutorial GETTING STARTED Microsoft PowerPoint is one of the most popular presentation programs supported by both Mac and PC platforms. Microsoft PowerPoint can be used to create interactive

More information

Create a Scrapbook Page

Create a Scrapbook Page Create a Scrapbook Page You are now going to create a scrapbook page that will contain an arrangement of pictures and text. 1. Open Photoshop start > programs > Adobe Master Collection > Photoshop CS5

More information

Sema Foundation ICT Department. Lesson - 18

Sema Foundation ICT Department. Lesson - 18 Lesson - 18 1 Manipulating Windows We can work with several programs at a time in Windows. To make working with several programs at once very easy, we can change the size of the windows by: maximize minimize

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 10.3 Last Updated: August 2012 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

What s New in the GM EPC

What s New in the GM EPC What s New in the GM EPC The GM Next Gen EPC has numerous new features designed to make finding the right part faster and easier. For detailed instructions on using each feature, select User Guide from

More information

Introduction to Microsoft Word 2008

Introduction to Microsoft Word 2008 1. Launch Microsoft Word icon in Applications > Microsoft Office 2008 (or on the Dock). 2. When the Project Gallery opens, view some of the available Word templates by clicking to expand the Groups, and

More information

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

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

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

There are six main steps in creating web pages in FrontPage98:

There are six main steps in creating web pages in FrontPage98: This guide will show you how to create a basic web page using FrontPage98 software. These instructions are written for IBM (Windows) computers only. However, FrontPage is available for Macintosh users

More information

PowerPoint 2016 Basics for Mac

PowerPoint 2016 Basics for Mac 1 PowerPoint 2016 Basics for Mac PowerPoint 2016 Basics for Mac Training Objective To learn the tools and features to get started using PowerPoint more efficiently and effectively. What you can expect

More information

Cruising Sacramento/ A PowerPoint Slide Show (Project #8)

Cruising Sacramento/ A PowerPoint Slide Show (Project #8) Cruising Sacramento/ A PowerPoint Slide Show (Project #8) Start PowerPoint: Microsoft Office PowerPoint 2007 PowerPoint should open as a presentation. If not Click the Office button and select New.. Select

More information

Mac OS X Part 3. The University of Utah Student Computing Labs Macintosh Support

Mac OS X Part 3. The University of Utah Student Computing Labs Macintosh Support Mac OS X Mac OS X Part 3 The University of Utah Student Computing Labs Macintosh Support mac@scl.utah.edu Basic overview of Mac OS X s interface Finding files/folders Basic overview of directory structure

More information

ToyBox Futuristi Instruction Manual

ToyBox Futuristi Instruction Manual ToyBox Futuristi Instruction Manual Contents Welcome to ToyBox Futuristi... 2 What can you do with this software?... 2 The Instructional Video... 2 Installing the software... 3 Windows... 3 Mac... 3 The

More information

Communication with Comic Life

Communication with Comic Life Communication with Comic Life (Draft) Task : In groups pupils will write and communicate a story using only eight photos and the Comic Life Application. Learning Outcomes: On successful completion of this

More information

Making Objects Move in Unison: Using Lists. Overview

Making Objects Move in Unison: Using Lists. Overview Making Objects Move in Unison: Using Lists By Deborah Nelson Duke University Professor Susan Rodger July 13, 2008 Updated June 2014 by Yossra Hamid Edited for Alice 3 use by Anh Trinh July 2016 Overview

More information

Making Objects Move in Unison: Using Lists

Making Objects Move in Unison: Using Lists Making Objects Move in Unison: Using Lists By Deborah Nelson Duke University Professor Susan Rodger July 13, 2008 Updated June 2014 by Yossra Hamid Edited for Alice 3 use by Anh Trinh July 2016 Overview

More information

Premiere Pro CC 2018 Essential Skills

Premiere Pro CC 2018 Essential Skills Premiere Pro CC 2018 Essential Skills Adobe Premiere Pro Creative Cloud 2018 University Information Technology Services Learning Technologies, Training, Audiovisual, and Outreach Copyright 2018 KSU Division

More information

Animation Charts 3. What is in the Animation Charts 3 Package? Horse Gallop Cycle Side View

Animation Charts 3. What is in the Animation Charts 3 Package? Horse Gallop Cycle Side View Animation Charts 3 Toon Boom Animation provides several animation charts designed to help the user animate different characters. The Animation Charts 3 package contains main actions and animation such

More information

Digital Story Telling Microsoft Windows Movie Maker 2.0

Digital Story Telling Microsoft Windows Movie Maker 2.0 The Windows Movie Maker Interface Movie Tasks: Takes you step by step through the movie making process Document Area TimeLine: This is called the storyboard Project preview Area: Preview your project Saving

More information

USER GUIDE: Typefitter Automation for print, online and mobile

USER GUIDE: Typefitter Automation for print, online and mobile USER GUIDE: Typefitter Automation for print, online and mobile release: 1.0.2 Australia. USA. UK. Netherlands. typefi.com 2004 2016 Typefi Systems Pty Ltd. All rights reserved. Under the copyright laws,

More information

Version Beta, pre-release. zspace Studio Demonstration Script

Version Beta, pre-release. zspace Studio Demonstration Script zspace Studio Demonstration Script Version 1.0-2014 Beta, pre-release zspace.com zspace Studio Demonstration Script zspace is a registered trademark of zspace, Inc. All other trademarks are the property

More information

What s Inside. 1 Introducing Creating Visually Compelling Lectue Slides Access to Slide Creation Software Step- by- Step Examples...

What s Inside. 1 Introducing Creating Visually Compelling Lectue Slides Access to Slide Creation Software Step- by- Step Examples... Creating Visually Compelling Lecture Slides User Guide What s Inside Updated: 2013 Aug 9 by Teaching & Learning Services Contact: cetl@unb.ca 1 Introducing Creating Visually Compelling Lectue Slides...

More information

EDITING GUIDE (EDIT SUITES)

EDITING GUIDE (EDIT SUITES) PREMIERE PRO CC (VERSION 2015.2) EDITING GUIDE (EDIT SUITES) Version 3.3 (FEB 2016) PREMIERE PRO CC EDIT GUIDE - La Trobe University 2015 latrobe.edu.au 2 What do you want to do? 3 1. Back up SD card footage

More information

Getting Started with. PowerPoint 2010

Getting Started with. PowerPoint 2010 Getting Started with 13 PowerPoint 2010 You can use PowerPoint to create presentations for almost any occasion, such as a business meeting, government forum, school project or lecture, church function,

More information

Impress Guide. Chapter 11 Setting Up and Customizing Impress

Impress Guide. Chapter 11 Setting Up and Customizing Impress Impress Guide Chapter 11 Setting Up and Customizing Impress Copyright This document is Copyright 2007 2013 by its contributors as listed below. You may distribute it and/or modify it under the terms of

More information

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 Query Studio Training Guide Cognos 8 February 2010 DRAFT Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 2 Table of Contents Accessing Cognos Query Studio... 5

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

Name: Date: Hour: PowToon Short Movie

Name: Date: Hour: PowToon Short Movie Name: Date: Hour: PowToon Short Movie PowToon ( www.powtoon.com ) is an online web-based animation software tool that allows you to create short movies by manipulating pre-created objects, imported images,

More information

Creating Book Trailers Using Photo Story 3 Why Photo Story 3? It is a free program anyone can download.

Creating Book Trailers Using Photo Story 3 Why Photo Story 3? It is a free program anyone can download. Creating Book Trailers Using Photo Story 3 Why Photo Story 3? It is a free program anyone can download. Before you begin using Photo Story 3 you will need to create a folder and title it Book Trailer.

More information

ITP 101 Project 2 - Photoshop

ITP 101 Project 2 - Photoshop ITP 101 Project 2 - Photoshop Project Objectives Learn how to use an image editing application to create digital images. We will use Adobe Photoshop for this project. Project Details To continue the development

More information

ProPresenter-Scoreboard. A Renewed Vision Product

ProPresenter-Scoreboard. A Renewed Vision Product ProPresenter-Scoreboard A Renewed Vision Product Copyright 2005-2016 Renewed Vision, Inc. All rights reserved. ProPresenter-Scoreboard is owned by Renewed Vision, Inc. 6505 Shiloh Road Suite 200 Alpharetta,

More information

Visio Core Essentials

Visio Core Essentials Visio 2013 - Core Essentials Prerequisites Windows Vista, Windows 7, or Windows 8 Overview This first level workshop shows participants how to get the most out of Microsoft Visio 2013. The course includes

More information

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved VisualPST 2.4 Visual object report editor for PowerSchool Copyright 2004-2015 Park Bench Software, LLC All Rights Reserved www.parkbenchsoftware.com This software is not free - if you use it, you must

More information

Fundamentals. Training Kit. Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY f presentationproducts.

Fundamentals. Training Kit. Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY f presentationproducts. Fundamentals Training Kit Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY 10001 212.736.6350 f 212.736.6353 presentationproducts.com How Does the SMART Board Interactive Whiteboard Work?

More information

User Manual-5.0 USER MANUAL 1.0

User Manual-5.0 USER MANUAL 1.0 User Manual-5.0 USER MANUAL 1.0 DgFlick Solutions Pvt. Ltd., Telephone: US +1-732-543-7676, India +91 22 2968 68 68. w w w. d g f l i c k. c o m s u p p o r t @ d g f l i c k. c o m Page 1 of 66 User Manual

More information

Getting Started with. PowerPoint 2010

Getting Started with. PowerPoint 2010 Getting Started with 13 PowerPoint 2010 You can use PowerPoint to create presentations for almost any occasion, such as a business meeting, government forum, school project or lecture, church function,

More information

NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION

NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION Module 1 Using Windows Welcome! Microsoft Windows is an important part of everyday student life. Whether you are logging onto an NSCC computer or

More information

BASIC MICROSOFT POWERPOINT

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

More information

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills Discovering Computers & Microsoft Office 2010 Office 2010 and Windows 7: Essential Concepts and Skills Objectives Perform basic mouse operations Start Windows and log on to the computer Identify the objects

More information