ALICE TUTORIAL. Introduction to Alice 3

Size: px
Start display at page:

Download "ALICE TUTORIAL. Introduction to Alice 3"

Transcription

1 ALICE TUTORIAL Introduction to Alice 3

2 STEP 1: SET UP THE SCENE In this step you will open Alice and setup the scene. To set up a scene you will pick a template, create objects from classes, and position the objects. You can also use a procedure to move an object in the scene. A template controls what the background of the world looks like, objects are things in the world, classes are the things that define objects or classify them, and a procedure is a step by step description of how to do something. Pick Template When you first start Alice 3 it will ask you to pick a template for your Alice world. There are lots of templates that you can use such as GRASS, ROOM, MARS. The template is used to set the ground and set other properties (characteristics) of the world. 1. Click on WONDERLAND. 2. Then click on OK.

3 Setup the Scene When you click the Setup Scene button you will be able to add objects to your scene. Objects are things in your scene such as people, trees, and animals. Objects know how to do things and have properties like a position. Objects will do the action in your Alice world..

4 Create Object - Mad Hatter Next we will create a Mad Hatter object. 1. Click on Biped classes 2. Click on new MadHatter() 3. Then click on OK Position Mad Hatter by click and dragging him to move him around hold CTRL and drag left or right to rotate him hold SHIFT and drag up or down to move him up or down Create Object WhiteRabbit() Create a whiterabbit object and position it where you want it to start in the scene. You can move it by moving the mouse cursor. You can rotate by clicking on the yellow ring around it and then dragging. Create Object CheshireCat() Create a cheshirecat object and position it where you want it by the end of the scene. You will move it away from the other characters to start by executing (running) a procedure.

5 Add Props Now we will add props to the scene to make it more interesting. 1. Click Browse Gallery By Theme then click Wonderland. 2. Click on new TeaTable() then click OK.. 3. Move the objects around until the Table is in the middle of Mad Hatter and White Rabbit.

6 Create Object - new Teapot() Create a new Teapot() object and position it on the table. You can move the object up by holding down Shift key while dragging the object up. Create Object - new Teacup() Create a new Teacup() object for both the White Rabbit and Mad Hatter. 1. Click on Search Gallery to search for teacup. 2. Select the teacup and place it on the table in front of Mad Hatter and White Rabbit.

7 Run a procedure To start the scene with cheshirecat far away from White Rabbit and Mad Hatter, you can run a procedure on the cheshirecat to move it backward. 1. Right click on this.cheshirecat in the left window and then select procedures then this.cheshirecat move then MoveDirection.BACKWARD and then Custom Decimal Number 2. Enter a number like "60" and click on OK SAVE YOUR PROJECT!!! File > Save as Name your project and click save.

8 Edit Code 1. Click on the Edit Code button so that you can start programming your objects. Step 2: Program the objects In this step you will program the objects to say things to each other and move. To program objects you will select the object that you want to work with and then drag out a procedure call to the myfirstmethod() window. A procedure is a list of things to do. Select Object Mad Hatter 2. Click on the down arrow next to pick this.madhatter as the current object. This will show the procedures (actions) that Mad Hatter knows how to do.

9 CALL PROCEDURE - SAY 1. Click on the left area of the block this.madhatter say and drag it to the myfirstmethod() window. 2. Click on Custom TextString. This will let you type in a string which is a sequence of characters. 3. Type in what you want Mad Hatter to say, like "Where s Alice?" and then click on OK.

10 Select Object White Rabbit Click on the down arrow next to this.madhatter and pick this.whiterabbit as the current object. This will show the procedures (actions) that White Rabbit knows how to do. Call Procedure - say Click on the left area of the block this.whiterabbit say and drag it to the myfirstmethod() window. Enter a custom string for White Rabbit to say to Mad Hatter like She s late! Select Object Cheshire Cat Click on the down arrow next to this.whiterabbit and pick this.cheshirecat as the current object. This will show the procedures (actions) that Cheshire Cat knows how to do. Call Procedure - movetoward Click on the left area of the block this.cheshirecat movetoward and drag it to the myfirstmethod() window. Select this.teatable and then Custom DecimalNumber. Type in "60" to move Cheshire Cat forward 60.

11 THE CODE WILL LOOK THE FOLLOWING PICTURE WHEN YOU ARE DONE.

12 Step 3: Challenge! Now, add to the animation you created or create a new animation of your own! Use the fill in the blank model below to create your storyline or play around in Alice and see what you can create! Things to add to your animation: Sound: Add background music to your animation (HINT: Add an audio procedure to the this.ground object) Different camera angles: Make the camera zoom in on each character while they are talking (HINT: Add a procedure to the this.camera object) More Characters: Add the Queen of Hearts or some other characters More props: Make the scene more interesting by adding more props like trees More Dialogue: Make Cheshire Cat join the conversation More Action: make the characters move around in the scene more Move the props: Can you make the tea cups jump around the table? Remember your steps: Set up your scene: Add props and characters Program your objects: Add different procedures to your props and characters. ANYTHING YOU ADD TO THE SCENE CAN BE PROGRAMMED! Do in order (character 1) turns to face the (character 2) (character 1) moves forward (number) meters (character 1) says " " (play audio optional) (character 2) says " " (play audio optional) Do together (character 1) turns to face the camera (character 2) turns to face the camera (character 1) says " " (play audio optional)

Overview. Scene Changes. Camera Markers in Alice 3. Open a new Alice world

Overview. Scene Changes. Camera Markers in Alice 3. Open a new Alice world Overview Scene Changes This is an modification of the June 2009/July 2012 scene change tutorial by Deborah Nelson and Chris Brown By Natalie Huffman Under the direction of Susan Rodger Duke University

More information

Tutorial on Bunny visi/ng his animal friends - parameters, events for Alice 3

Tutorial on Bunny visi/ng his animal friends - parameters, events for Alice 3 Tutorial on Bunny visi/ng his animal friends - parameters, events for Alice 3 Susan Rodger Duke University June 2009 Updated by Yossra Hamid on October 2015 Start with a new world Add a bunny, a camel,

More information

Part II Coding the Animation

Part II Coding the Animation Part II Coding the Animation Welcome to Part 2 of a tutorial on programming with Alice and Garfield using the Alice 2 application software. In Part I of this tutorial, you created a scene containing characters

More information

Alice: A Visual Introduction to Programming. Chapter 1 Part 2

Alice: A Visual Introduction to Programming. Chapter 1 Part 2 Alice: A Visual Introduction to Programming Chapter 1 Part 2 Objects Alice uses objects o Tent o Soldier o Princess Objects perform actions Turn Move Fly Wave 1-2 The Alice System 1-3 Open SnowLove in

More information

Objects in Alice: Positioning and. Moving Them July 2008

Objects in Alice: Positioning and. Moving Them July 2008 Objects in Alice: Positioning and By Jenna Hayes under the direction of Professor Susan Rodger Duke University July 2008 Moving Them July 2008 www.cs.duke.edu/csed/alice/aliceinschools Download the Alice

More information

CS Problem Solving and Structured Programming Lab 1 - Introduction to Programming in Alice designed by Barb Lerner Due: February 9/10

CS Problem Solving and Structured Programming Lab 1 - Introduction to Programming in Alice designed by Barb Lerner Due: February 9/10 CS 101 - Problem Solving and Structured Programming Lab 1 - Introduction to Programming in lice designed by Barb Lerner Due: February 9/10 Getting Started with lice lice is installed on the computers in

More information

Creo Revolve Tutorial

Creo Revolve Tutorial Creo Revolve Tutorial Setup 1. Open Creo Parametric Note: Refer back to the Creo Extrude Tutorial for references and screen shots of the Creo layout 2. Set Working Directory a. From the Model Tree navigate

More information

Challenge 1: Tami s World

Challenge 1: Tami s World Challenge 1: Tami s World In this challenge, you will: Practice using the main areas of Storytelling Alice including the Scenes window, Objects tree, details panel and method editor Add objects from the

More information

To solve a problem (perform a task) in a virtual world, we must accomplish the following:

To solve a problem (perform a task) in a virtual world, we must accomplish the following: Chapter 3 Animation at last! If you ve made it to this point, and we certainly hope that you have, you might be wondering about all the animation that you were supposed to be doing as part of your work

More information

Creating a Frame by Frame Animation for PhotoStory

Creating a Frame by Frame Animation for PhotoStory Creating a Frame by Frame Animation for PhotoStory There are an unlimited number of animation styles that you can create using the PhotoShop Elements software. Depending on the type of animation you want,

More information

Begin at the beginning," the King said, very gravely, "and go on till you come to the end

Begin at the beginning, the King said, very gravely, and go on till you come to the end An Introduction to Alice Begin at the beginning," the King said, very gravely, "and go on till you come to the end By Teddy Ward Under the direction of Professor Susan Rodger Duke University, May 2013

More information

Alice and Daisies: Posi/oning and Moving Objects in Alice. By Jenna Hayes under the direc/on of Professor Susan Rodger Duke University July 2008

Alice and Daisies: Posi/oning and Moving Objects in Alice. By Jenna Hayes under the direc/on of Professor Susan Rodger Duke University July 2008 Alice and Daisies: Posi/oning and Moving Objects in Alice By Jenna Hayes under the direc/on of Professor Susan Rodger Duke University July 2008 Introduction Download the Alice World that goes along with

More information

Once you have chosen the water world this is how your screen should look.

Once you have chosen the water world this is how your screen should look. Getting Started t With Alice By Ruthie Tucker under the direction of Prof. Susan Rodger Duke University, July 2008 www.cs.duke.edu/csed/alice/aliceinschools/ Let s Get Started The first step in making

More information

Alice is 150 years old!

Alice is 150 years old! Bring the real world into your classroom 16 May 2015 AGE GROUP 6-8 years 3 8-10 years 3 10-12 years 3 bilingual Alice is 150 years old! This year is the 150th anniversary of Alice in Wonderland and children

More information

Session 3: Getting to Know Photoshop Elements. Keep in mind that there are many others ways of solving the problems.

Session 3: Getting to Know Photoshop Elements. Keep in mind that there are many others ways of solving the problems. Tutorial Session 3: Getting to Know Photoshop Elements Now that you have taken some pictures you might have noticed that some of the images have little problems like red-eye, colorcast, and too dark or

More information

Collage Images. By Rob MacIlreith For Use with GIMP 2.8 Last Updated July 2013

Collage Images. By Rob MacIlreith For Use with GIMP 2.8 Last Updated July 2013 Collage Images By Rob MacIlreith For Use with GIMP 2.8 Last Updated July 2013 Before Beginning: Have your collage images saved in your H:\Drive. You will have to copy and paste them from your flash drive

More information

Creo Extrude Tutorial 2: Cutting and Adding Material

Creo Extrude Tutorial 2: Cutting and Adding Material Creo Extrude Tutorial 2: Cutting and Adding Material 1. Open Creo Parametric 2. File > Open > extrudeturial (From Creo Extrude Tutorial 1) 3. Cutting Material a. Click Extrude Icon > Select the following

More information

IGNITE BASICS V1.1 19th March 2013

IGNITE BASICS V1.1 19th March 2013 IGNITE BASICS V1.1 19th March 2013 Ignite Basics Ignite Basics Guide Ignite Basics Guide... 1 Using Ignite for the First Time... 2 Download and Install Ignite... 2 Connect Your M- Audio Keyboard... 2 Open

More information

Basics Pictures Media Bar

Basics Pictures Media Bar Basics 1 The right pictures can make your publication stand out from the crowd. In this tutorial, we ll show you how to: Add and replace pictures. Use the Media Bar. Pan, zoom, and crop pictures. Apply

More information

Lesson 2 Game Basics

Lesson 2 Game Basics Lesson What you will learn: how to edit the stage using the Paint Editor facility within Scratch how to make the sprite react to different colours how to import a new sprite from the ones available within

More information

Instant Engagement Pair Structures. User s Manual. Instant Engagement 2011 Kagan Publishing

Instant Engagement Pair Structures. User s Manual. Instant Engagement 2011 Kagan Publishing Instant Engagement Pair Structures User s Manual Instant Engagement 2011 Kagan Publishing www.kaganonline.com 1.800.933.2667 2 Instant Engagement Pair Structures Table of Contents GAME OVERVIEW... 3 Setup...3

More information

Quintic Software Tutorial 3

Quintic Software Tutorial 3 Quintic Software Tutorial 3 Take a Picture 1 Tutorial 3 Take a Picture Contents Page 1. Photo 2. Photo Sequence a. Add shapes and angles 3. Export Analysis 2 Tutorial 3 Take a Picture 1. Photo Open the

More information

Making Your World with the Aurora Toolset

Making Your World with the Aurora Toolset Making Your World with the Aurora Toolset The goal of this tutorial is to build a very simple module to ensure that you've picked up the necessary skills for the other tutorials. After completing this

More information

Princess & Dragon Version 2

Princess & Dragon Version 2 Princess & Dragon Version 2 Part 3: Billboards, Events, Sounds, 3D text and Properties By Michael Hoyle under the direction of Professor Susan Rodger Duke University July 2012 Overview In this last part,

More information

Sketch-Up Project Gear by Mark Slagle

Sketch-Up Project Gear by Mark Slagle Sketch-Up Project Gear by Mark Slagle This lesson was donated by Mark Slagle and is to be used free for education. For this Lesson, we are going to produce a gear in Sketch-Up. The project is pretty easy

More information

Working With Drawing Views-I

Working With Drawing Views-I Chapter 12 Working With Drawing Views-I Learning Objectives After completing this chapter you will be able to: Generate standard three views. Generate Named Views. Generate Relative Views. Generate Predefined

More information

Drawing 8e CAD#11: View Tutorial 8e: Circles, Arcs, Ellipses, Rotate, Explode, & More Dimensions Objective: Design a wing of the Guggenheim Museum.

Drawing 8e CAD#11: View Tutorial 8e: Circles, Arcs, Ellipses, Rotate, Explode, & More Dimensions Objective: Design a wing of the Guggenheim Museum. Page 1 of 6 Introduction The drawing used for this tutorial comes from Clark R. and M.Pause, "Precedents in Architecture", VNR 1985, page 135. Stephen Peter of the University of South Wales developed the

More information

Certified SOLIDWORKS Professional Advanced Preparation Materials

Certified SOLIDWORKS Professional Advanced Preparation Materials Includes Preparation for Five Advanced Certification Exams Certified SOLIDWORKS Professional Advanced Preparation Materials Sheet Metal, Weldments, Surfacing, Mold Tools and Drawing Tools SOLIDWORKS 2016

More information

Creating a Historical Tour in Alice

Creating a Historical Tour in Alice Creating a Historical Tour in Alice Overview Making a historical tour in Alice is a good way to visualize a historical place, event, or person, and can help you learn facts about history. In this tutorial,

More information

Table of Contents. Creating Your First Project 4. Enhancing Your Slides 8. Adding Interactivity 12. Recording a Software Simulation 19

Table of Contents. Creating Your First Project 4. Enhancing Your Slides 8. Adding Interactivity 12. Recording a Software Simulation 19 Table of Contents Creating Your First Project 4 Enhancing Your Slides 8 Adding Interactivity 12 Recording a Software Simulation 19 Inserting a Quiz 24 Publishing Your Course 32 More Great Features to Learn

More information

Interior Orientation Introduction Project Open File

Interior Orientation Introduction Project Open File Introduction The is the process whereby one can recover the digital image s coordinate system reference back to photogrammetric camera s metric coordinate system. This is possible through measuring the

More information

In this lesson we are going to create cartoon eyes and parent them to the head bone.

In this lesson we are going to create cartoon eyes and parent them to the head bone. In this lesson we are going to create cartoon eyes and parent them to the head bone. Open up your fish project and in the modeling object window we will create a new object layer to develop the eyes, then

More information

This tutorial will guide you through the process of adding basic ambient sound to a Level.

This tutorial will guide you through the process of adding basic ambient sound to a Level. Tutorial: Adding Ambience to a Level This tutorial will guide you through the process of adding basic ambient sound to a Level. You will learn how to do the following: 1. Organize audio objects with a

More information

Revision for Grade 6 in Unit #1 Design & Technology Subject Your Name:... Grade 6/

Revision for Grade 6 in Unit #1 Design & Technology Subject Your Name:... Grade 6/ Your Name:.... Grade 6/ SECTION 1 Matching :Match the terms with its explanations. Write the matching letter in the correct box. The first one has been done for you. (1 mark each) Term Explanation 1. Gameplay

More information

Lesson 1 Getting Started. 1. What are the different ways you interact with computers?

Lesson 1 Getting Started. 1. What are the different ways you interact with computers? Lesson 1 Getting Started Introducing Scratch 1. What are the different ways you interact with computers? 2. How many of these ways involve being creative with computers? 3. Write down the types of project

More information

Introducing Photo Story 3

Introducing Photo Story 3 Introducing Photo Story 3 SAVE YOUR WORK OFTEN!!! Page: 2 of 22 Table of Contents 0. Prefix...4 I. Starting Photo Story 3...5 II. Welcome Screen...5 III. Import and Arrange...6 IV. Editing...8 V. Add a

More information

Imaging Features Available in HTML5. it just makes sense

Imaging Features Available in HTML5. it just makes sense Imaging Features Available in HTML5 it just makes sense August, 2018 Imaging Features Available in HTML5 As part of the 5.2 SP1 release, the Images functionality is now available in HTML5 and provides

More information

Introducing Digital Scrapbooking. Create beautiful books from your photos using Photoshop Elements

Introducing Digital Scrapbooking. Create beautiful books from your photos using Photoshop Elements Introducing Digital Scrapbooking Create beautiful books from your photos using Photoshop Elements 1 Contents Digital Scrapbooking with Photoshop Elements... 3 Using Photoshop Elements... 4 Saving your

More information

SolidWorks Part I - Basic Tools SDC. Includes. Parts, Assemblies and Drawings. Paul Tran CSWE, CSWI

SolidWorks Part I - Basic Tools SDC. Includes. Parts, Assemblies and Drawings. Paul Tran CSWE, CSWI SolidWorks 2015 Part I - Basic Tools Includes CSWA Preparation Material Parts, Assemblies and Drawings Paul Tran CSWE, CSWI SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered

More information

Unit 6.5 Text Adventures

Unit 6.5 Text Adventures Unit 6.5 Text Adventures Year Group: 6 Number of Lessons: 4 1 Year 6 Medium Term Plan Lesson Aims Success Criteria 1 To find out what a text adventure is. To plan a story adventure. Children can describe

More information

First Steps in Unity3D

First Steps in Unity3D First Steps in Unity3D The Carousel 1. Getting Started With Unity 1.1. Once Unity is open select File->Open Project. 1.2. In the Browser navigate to the location where you have the Project folder and load

More information

FLEXLINK DESIGN TOOL VR GUIDE. documentation

FLEXLINK DESIGN TOOL VR GUIDE. documentation FLEXLINK DESIGN TOOL VR GUIDE User documentation Contents CONTENTS... 1 REQUIREMENTS... 3 SETUP... 4 SUPPORTED FILE TYPES... 5 CONTROLS... 6 EXPERIENCE 3D VIEW... 9 EXPERIENCE VIRTUAL REALITY... 10 Requirements

More information

A Quick Spin on Autodesk Revit Building

A Quick Spin on Autodesk Revit Building 11/28/2005-3:00 pm - 4:30 pm Room:Americas Seminar [Lab] (Dolphin) Walt Disney World Swan and Dolphin Resort Orlando, Florida A Quick Spin on Autodesk Revit Building Amy Fietkau - Autodesk and John Jansen;

More information

In this video tutorial, we re going to take a look at continuity editing and how we can use editing techniques to compress time.

In this video tutorial, we re going to take a look at continuity editing and how we can use editing techniques to compress time. Digital Film School Continuity editing In this video tutorial, we re going to take a look at continuity editing and how we can use editing techniques to compress time. Rick and John have given me the rushes

More information

Alice in Wonderland. My favorite legend story by Cherish Armendariz

Alice in Wonderland. My favorite legend story by Cherish Armendariz Alice in Wonderland My favorite legend story by Cherish Armendariz My favorite book and movie has always been Alice and Wonderland. From the old black and white books to the Disney movie and the rides

More information

Land use in my neighborhood Part I.

Land use in my neighborhood Part I. Land use in my neighborhood Part I. We are beginning a 2-part project looking at forests and land use in your home neighborhood. The goal is to measure trends in forest development in modern Ohio. You

More information

CAD Tutorial. CAD Detail Windows. In this tutorial you ll learn about: CAD Detail Windows Exploding and Modifying a CAD Block

CAD Tutorial. CAD Detail Windows. In this tutorial you ll learn about: CAD Detail Windows Exploding and Modifying a CAD Block CAD Tutorial In this tutorial you ll learn about: CAD Detail Windows Exploding and Modifying a CAD Block Creating a New CAD Block CAD Detail from View Creating a Plot Plan CAD Detail Windows CAD Details

More information

Introduction to Parametric Modeling AEROPLANE. Design & Communication Graphics 1

Introduction to Parametric Modeling AEROPLANE. Design & Communication Graphics 1 AEROPLANE Design & Communication Graphics 1 Object Analysis sheet Design & Communication Graphics 2 Aeroplane Assembly The part files for this assembly are saved in the folder titled Aeroplane. Open an

More information

Vectorworks / MiniCAD Tutorials

Vectorworks / MiniCAD Tutorials Vectorworks / MiniCAD Tutorials Tutorial 1: Construct a simple model of a little house Tutorial 2: Construct a 4 view Orthographic drawing of the Model These tutorials are available as Adobe Acrobat 4

More information

Lattice Design Solid Infills. Tutorial_V2 : 13,0600,1489,1616(SP6)

Lattice Design Solid Infills. Tutorial_V2 : 13,0600,1489,1616(SP6) Lattice Design Solid Infills Tutorial_V2 : 13,0600,1489,1616(SP6) Introduction 3DXpert for SOLIDWORKS includes tools for creating optimized structures, using Lattices and Infills. Infills are structures

More information

The Basics. By Jenna Hayes under the direction of Professor Susan Rodger Duke University July

The Basics. By Jenna Hayes under the direction of Professor Susan Rodger Duke University July Getting Started With Alice: The Basics By Jenna Hayes under the direction of Professor Susan Rodger Duke University July 2008 www.cs.duke.edu/csed/alice/aliceinschools Step 1: Background Open up Alice,

More information

digitization station DIGITAL SCRAPBOOKING 120 West 14th Street

digitization station DIGITAL SCRAPBOOKING 120 West 14th Street digitization station DIGITAL SCRAPBOOKING 120 West 14th Street www.nvcl.ca techconnect@cnv.org DIGITAL SCRAPBOOKING With MyMemories Suite 6 The MyMemories Digital Scrapbooking software allows you to create

More information

Google Earth Workshop Version 5

Google Earth Workshop Version 5 Google Earth Workshop Version 5 From the Mitchell Home Page (http://mitchell.needham.k12.ma.us) Technology > For Teachers > Prof Dev > Google Earth Getting to Know Google Earth Taken from Google Earth

More information

Appendix B: Autocad Booklet YR 9 REFERENCE BOOKLET ORTHOGRAPHIC PROJECTION

Appendix B: Autocad Booklet YR 9 REFERENCE BOOKLET ORTHOGRAPHIC PROJECTION Appendix B: Autocad Booklet YR 9 REFERENCE BOOKLET ORTHOGRAPHIC PROJECTION To load Autocad: AUTOCAD 2000 S DRAWING SCREEN Click the start button Click on Programs Click on technology Click Autocad 2000

More information

How to create a cove for cove lighting in DIALux In this tutorial you will learn how to make a cove similar to the one in the following image

How to create a cove for cove lighting in DIALux In this tutorial you will learn how to make a cove similar to the one in the following image How to create a cove for cove lighting in DIALux In this tutorial you will learn how to make a cove similar to the one in the following image The cove dimension will be 4 meter by 5 meter and the other

More information

Top Storyline Time-Saving Tips and. Techniques

Top Storyline Time-Saving Tips and. Techniques Top Storyline Time-Saving Tips and Techniques New and experienced Storyline users can power-up their productivity with these simple (but frequently overlooked) time savers. Pacific Blue Solutions 55 Newhall

More information

House Design Tutorial

House Design Tutorial Chapter 2: House Design Tutorial This House Design Tutorial shows you how to get started on a design project. The tutorials that follow continue with the same plan. When we are finished, we will have created

More information

Materials Tutorial. Setting Materials Defaults

Materials Tutorial. Setting Materials Defaults Materials Tutorial Materials display on the surfaces of objects in 3D views and can make a 3D view appear highly realistic. When applied to most objects, material quantities will also be calculated in

More information

Kodu Game Programming

Kodu Game Programming Kodu Game Programming Have you ever played a game on your computer or gaming console and wondered how the game was actually made? And have you ever played a game and then wondered whether you could make

More information

Next Back Save Project Save Project Save your Story

Next Back Save Project Save Project Save your Story What is Photo Story? Photo Story is Microsoft s solution to digital storytelling in 5 easy steps. For those who want to create a basic multimedia movie without having to learn advanced video editing, Photo

More information

Photo Story Tutorial

Photo Story Tutorial Photo Story Tutorial To create a new Photo Story Project: 1. Start 2. Programs 3. Photo Story 4. Begin a New Story 5. Next 6. Import Pictures 7. Click on your Flash Drive s name from the window on the

More information

VOCAL FX PROJECT LESSON 9 TUTORIAL ACTIVITY

VOCAL FX PROJECT LESSON 9 TUTORIAL ACTIVITY LESSON 9 TUTORIAL REQUIRED MATERIALS: VOCAL FX PROJECT STUDENT S GUIDE NAME: PERIOD: TEACHER: CLASS: CLASS TIME: Audio Files (Pre-recorded or Recorded in the classroom) Computer with Mixcraft Mixcraft

More information

Let's Race! Typing on the Home Row

Let's Race! Typing on the Home Row Let's Race! Typing on the Home Row Michael Hoyle Susan Rodger Duke University 2012 Overview In this tutorial you will be creating a bike racing game to practice keyboarding. Your bike will move forward

More information

To start a new drawing Select File New then from the dialog box, which appears select Normal.dft followed by OK.

To start a new drawing Select File New then from the dialog box, which appears select Normal.dft followed by OK. Draft Tutorial This tutorial provides step-by-step instructions for the detailing of a drawing of the anchor block shown opposite. As you create this drawing, you will use the following drafting techniques:

More information

2

2 1 2 3 4 5 6 7 of 14 7/11/17, 8:46 AM 7 8 9 10 11 12 13 Apply an animation 1. Select the object or text on the slide that you want to animate. An "object" in this context is any thing on a slide, such as

More information

g. Click once on the left vertical line of the rectangle.

g. Click once on the left vertical line of the rectangle. This drawing will require you to a model of a truck as a Solidworks Part. Please be sure to read the directions carefully before constructing the truck in Solidworks. Before submitting you will be required

More information

Chapter 1 Virtual World Fundamentals

Chapter 1 Virtual World Fundamentals Chapter 1 Virtual World Fundamentals 1.0 What Is A Virtual World? {Definition} Virtual: to exist in effect, though not in actual fact. You are probably familiar with arcade games such as pinball and target

More information

Ornamental Pro 2004 Instruction Manual (Drawing Basics)

Ornamental Pro 2004 Instruction Manual (Drawing Basics) Ornamental Pro 2004 Instruction Manual (Drawing Basics) http://www.ornametalpro.com/support/techsupport.htm Introduction Ornamental Pro has hundreds of functions that you can use to create your drawings.

More information

Creo Extrude Tutorial 3: Hole, Fillets and Rounds

Creo Extrude Tutorial 3: Hole, Fillets and Rounds Creo Extrude Tutorial 3: Hole, Fillets and Rounds By: Matthew Jourden Brighton High School 1. Open Creo Parametric 2. File > Open > extrudetutorial (From Creo Extrude Tutorial 1) NOTE: Minimum of 2 other

More information

Using Bloxels in the Classroom

Using Bloxels in the Classroom Using Bloxels in the Classroom Introduction and Getting Started: What are Bloxels? With Bloxels, you can use the concept of game design to tell stories! Bloxels Grid Board Each Bloxels set consists of

More information

Follow our guidelines carefully to ensure proper system function. EQUIPMENT

Follow our guidelines carefully to ensure proper system function. EQUIPMENT Follow our guidelines carefully to ensure proper system function. EQUIPMENT A microscope system (camera, stage, objectives, computer etc.) Calibration grid slide The latest version of MBF software. Optional:

More information

Mr. Giansante. Alice. 3D Programming

Mr. Giansante. Alice. 3D Programming Alice 3D Programming September 2016 Table of Contents What is Alice?... 3 The Alice Environment... 4 Tutorials... 5 Example Worlds... 6 Methods and Events... 7 Kangaroo Program... 8 Continuous Motion...

More information

Use Corel Snapfire 2.0 to create scrapbook pages, greeting cards and more!

Use Corel Snapfire 2.0 to create scrapbook pages, greeting cards and more! Page 1 of 6 Use Corel Snapfire 2.0 to create scrapbook pages, greeting cards and more! Snapfire 2.0 comes with hundreds of project templates that let you easily create album pages, scrapbook pages, greeting

More information

Annex IV - Stencyl Tutorial

Annex IV - Stencyl Tutorial Annex IV - Stencyl Tutorial This short, hands-on tutorial will walk you through the steps needed to create a simple platformer using premade content, so that you can become familiar with the main parts

More information

04. Two Player Pong. 04.Two Player Pong

04. Two Player Pong. 04.Two Player Pong 04.Two Player Pong One of the most basic and classic computer games of all time is Pong. Originally released by Atari in 1972 it was a commercial hit and it is also the perfect game for anyone starting

More information

Wavelab 5.0 Matrix How-To:

Wavelab 5.0 Matrix How-To: 1 of 14 2/16/2009 9:51 AM NEW! Upgrade to Pro Hosting and receive Ad-Free Webtools + More! How-To: How to make a post recording Matrix with Wavelab. I used Wavelab 5.0 for this. Other versions of Wavelab

More information

Jing PDF Tutorial Template

Jing PDF Tutorial Template Jing PDF Tutorial Template Developer Name: Microsoft App Utilized: Video URL from Camtasia: https://www.youtube.com/watch?v=kcp7hg8vbvs&feature=youtu.be Table of Contents New Slide pg. 2-3 Action Button

More information

Materials Tutorial. Chapter 6: Setting Materials Defaults

Materials Tutorial. Chapter 6: Setting Materials Defaults Setting Materials Defaults Chapter 6: Materials Tutorial Materials display on the surfaces of objects in 3D views and can make a 3D view appear highly realistic. When applied to most objects, material

More information

Drafting: A Hands-on Experience

Drafting: A Hands-on Experience Steve Webb Field Support Applications Engineer Drafting: A Hands-on Experience Solid Edge University 2014 May 12-14, Atlanta, GA, USA SOLID EDGE UNIVERSITY 2014 Re-imagine What s Possible #SEU14 Agenda

More information

Introduction. Overview

Introduction. Overview Introduction and Overview Introduction This goal of this curriculum is to familiarize students with the ScratchJr programming language. The curriculum consists of eight sessions of 45 minutes each. For

More information

SCRAPENDIPITY Designs. Electric Quilt 7 Tutorial. Building a Quilt

SCRAPENDIPITY Designs. Electric Quilt 7 Tutorial. Building a Quilt Electric Quilt 7 Tutorial Building a Quilt When you start Electric Quilt up, you will see this screen. Type the name of your quilt and hit OK Now we need to make sure we have the correct layout. Go to

More information

user guide for windows creative learning tools

user guide for windows creative learning tools user guide for windows creative learning tools Page 2 Contents Welcome to MissionMaker! Please note: This user guide is suitable for use with MissionMaker 07 build 1.5 and MissionMaker 2.0 This guide will

More information

Digital Photo Guide. Version 8

Digital Photo Guide. Version 8 Digital Photo Guide Version 8 Simsol Photo Guide 1 Simsol s Digital Photo Guide Contents Simsol s Digital Photo Guide Contents 1 Setting Up Your Camera to Take a Good Photo 2 Importing Digital Photos into

More information

Using the Desktop Recorder

Using the Desktop Recorder Mediasite Using the Desktop Recorder Instructional Media publication: 09-Students 9/8/06 Introduction The new Desktop Recorder from Mediasite allows HCC users to record content on their computer desktop

More information

Alibre Design Tutorial: Loft, Extrude, & Revolve Cut Loft-Tube-1

Alibre Design Tutorial: Loft, Extrude, & Revolve Cut Loft-Tube-1 Alibre Design Tutorial: Loft, Extrude, & Revolve Cut Loft-Tube-1 Part Tutorial Exercise 5: Loft-Tube-1 [Complete] In this Exercise, We will set System Parameters first, then part options. Then, in sketch

More information

FILM MAKING STORYTELLING

FILM MAKING STORYTELLING FILM MAKING STORYTELLING STORY TELLING WITH CAMERA TECHNIQUES Watch the following videos to learn about Story Telling with Camera Techniques How Camera Techniques help tell to tell a story The Meaning

More information

Upcoming Events: Floppy Cats Part 2 - Adding the Scrolling Pillars

Upcoming Events: Floppy Cats Part 2 - Adding the Scrolling Pillars GAME MAKER PROGRAMMING Topic: Floppy Cats Part 1 Scene Setup, Sprites, Backgrounds Objective: The students will begin designing and coding a new game. This type of game will be a parody of the flappy bird

More information

Kodu Lesson 7 Game Design The game world Number of players The ultimate goal Game Rules and Objectives Point of View

Kodu Lesson 7 Game Design The game world Number of players The ultimate goal Game Rules and Objectives Point of View Kodu Lesson 7 Game Design If you want the games you create with Kodu Game Lab to really stand out from the crowd, the key is to give the players a great experience. One of the best compliments you as a

More information

Bottom Rail. Chapter 2. Chair. A. Weldments Toolbar. Step 1. Click File Menu > New, click Part and OK. B. 3D Sketch.

Bottom Rail. Chapter 2. Chair. A. Weldments Toolbar. Step 1. Click File Menu > New, click Part and OK. B. 3D Sketch. Chapter 2 Chair Bottom Rail A. Weldments Toolbar. Step 1. Click File Menu > New, click Part and OK. Step 2. Right click Sketch on the Command Manager toolbar and select Weldments, Fig. 1. Step 3. Click

More information

Basic Tutorials Series: Import A Photograph. RenoWorks Support Team Document #HWPRO0003

Basic Tutorials Series: Import A Photograph. RenoWorks Support Team Document #HWPRO0003 Basic Tutorials Series: Import A Photograph RenoWorks Support Team Document #HWPRO0003 Import A Photograph 2 1 Import Your Own Photograph The Photo Import Wizard The Photo Import Wizard is the first tool

More information

4) Click on Load Point Cloud to load the.czp file from Scene. Open Intersection_Demo.czp

4) Click on Load Point Cloud to load the.czp file from Scene. Open Intersection_Demo.czp Intersection 2D Demo 1) Open the Crash Zone or Crime Zone diagram program. 2) Click on to open the CZ Point Cloud tool. 3) Click on 3D/Cloud Preferences. a) Set the Cloud File Units (Feet or Meters). b)

More information

Gaia is a system that enables rapid and precise creation of gorgeous looking Unity terrains. Version March 2016 GAIA. By Procedural Worlds

Gaia is a system that enables rapid and precise creation of gorgeous looking Unity terrains. Version March 2016 GAIA. By Procedural Worlds Gaia is a system that enables rapid and precise creation of gorgeous looking Unity terrains. Version 1.5.3 March 2016 GAIA By Procedural Worlds Quick Start 1. Create a new project and import Gaia. 2. Unity

More information

NWN Toolset Module Construction Tutorial

NWN Toolset Module Construction Tutorial Name: Date: NWN Toolset Module Construction Tutorial Your future task is to create a story that people will not only be able to read but explore using the Neverwinter Nights (NWN) computer game. Before

More information

VERSION 3.0 WINDOWS USER GUIDE

VERSION 3.0 WINDOWS USER GUIDE VERSION 3.0 WINDOWS USER GUIDE TABLE OF CONTENTS Introduction... 5 What s New?... 5 What This Guide Is Not... 6 Getting Started... 7 Activating... 7 Activate Via the Internet... 7 Activate Via Email...

More information

SMALL OFFICE TUTORIAL

SMALL OFFICE TUTORIAL SMALL OFFICE TUTORIAL in this lesson you will get a down and dirty overview of the functionality of Revit Architecture. The very basics of creating walls, doors, windows, roofs, annotations and dimensioning.

More information

Creating a Slide Show with Background Music in Adobe Lightroom January 2017 Maryann Flick

Creating a Slide Show with Background Music in Adobe Lightroom January 2017 Maryann Flick Creating a Slide Show with Background Music in Adobe Lightroom January 2017 Maryann Flick Adobe Lightroom is widely used by many photographers for image organization and editing. If you are already using

More information

Wonderland Challenge

Wonderland Challenge Wonderland Challenge And now for something completely different, we have taken a different slant on a challenge badge. After a century of Guiding we started thinking about time, and being late and then

More information

SMART 3 IN 1 HOLLYWOOD PHOTOS: SETTING UP YOUR BOOTH FOR WEDDING/EVENT MODE

SMART 3 IN 1 HOLLYWOOD PHOTOS: SETTING UP YOUR BOOTH FOR WEDDING/EVENT MODE SMART 3 IN 1 HOLLYWOOD PHOTOS: SETTING UP YOUR BOOTH FOR WEDDING/EVENT MODE Start the Hollywood Photo Booth program. Rightclick anywhere on the screen and choose Setup. Click Next until you get to Screen

More information

Drawing Layouts Paper space & Model Space

Drawing Layouts Paper space & Model Space Drawing Layouts Paper space & Model Space Users of Bricscad will have seen the tabs at the bottom left of the drawings area labelled: Model, Layout1, Layout2 but may not know how to use them or what they

More information