World-level Classes and Methods. Chapter 6

Size: px
Start display at page:

Download "World-level Classes and Methods. Chapter 6"

Transcription

1 World-level Classes and Methods Chapter 6

2 Programs Grow Code seems to grow and grow Makes program more difficult to read and process in our minds Games and other software can have thousands, even millions of lines of code

3 Basic Components Classes, objects, and methods in object-oriented programming These components help to o Organize a large program into small modules o Design and think about an intricate program o Find and remove errors (bugs)

4 Classes and Objects Classes o In Alice, classes are predefined as 3D models Objects o An object is an instance of a class Class: Frog (Uppercase first letter) Objects: frog, frog1, frog2, frog3 (lowercase first letter)

5 Methods Built-in (predefined) methods o Examples: move, turn to face, say Custom methods o User creates own method

6 Stepwise Refinement Process of breaking problem into smaller tasks o Then break each task into simpler steps Once storyboard completed write method for each task

7 Lunar Robot Example

8 Lunar Robot Using Methods Organize instructions into smaller methods A possible storyboard for Lunar Robot example Do in order surprise spiderrobot and alienonwheels surprise each other investigate spiderrobot gets a closer look at alienonwheels react alienonwheels hides and spiderrobot sends message

9 surprise Method Break down each major task into simpler steps o Example for surprise method: surprise Do in order alienonwheels moves up alienonwheels says "Slithy toves?" spiderrobot's head turns around

10 Demo: Starting a new method First associate the new method with the World Select the World tile in the Object Tree Select the methods tab in the details area Click on the "create new method" button

11 World.surprise Code Editor Click on tabs to switch between methods

12 World Level Method Method for entire World Has instructions involving more than one object (spiderrobot, alienonwheels)

13 Demo First Encounter Concepts illustrated in this example world: o surprise is a world-level method Executed by calling (invoking) the method

14 Starting Method Can run surprise by self by clicking down arrow to right of method in Events

15 Method investigate Instructions that moves robot and legs one meter at time

16 Method react Alien moves down, Robot informs Houston

17 Edit or Read Method Click on edit button to edit or read method code

18 Combine all Methods 2 instances of investigate used to move 2 meters Can use loop to move more than 2 meters

19 Deleting Methods Delete all calls to method Close its edit window o Right click edit window and select close Drag name to trash bin

20 Why Write Own Methods? No method does what you need o You need new functionality Saves time o Can call method many times without making your own code to do same thing Reduces code size o Call method instead of rewriting code Allows thinking at a higher level o o Can think surprise instead of The alien moves up and says Slithy toves? and then the robot's head turns around. Abstraction "thinking at a higher level"

21 Example: A Beetle Band Create an animation for a bug band as an advertisement for their next concert

22 Demo BeetleBand-v1 Concepts illustrated o To play a sound, a sound file must first be imported into Alice Alice is not a sound editor o This code is only for georgebeetle o Three more methods (one for each band member) will be needed

23 Storyboards Each bug band member will perform a solo. Do together Do in order georgebeetle move up georgebeetle move down play sound Do together Do in order ringobeetle move up ringobeetle move down play sound Do together Do in order paulbeetle move up paulbeetle move down play sound Do together Do in order lennonbeetle move up lennonbeetle move down play sound

24 A Better Solution Creating four versions of similar code is tedious Only things that change are band member and music played Better solution o Write more flexible method

25 Beetles Storyboard One method can be used Use parameters to specify Which band member will perform Which music should be played solo Parameters: bandmember, music Do together Do in order bandmember move up bandmember move down play music

26 Parameters Built-in methods give flexibility by providing parameters like distance and direction Parameters allow values (arguments) to be passed to methods o Example Parameters: direction, distance, duration Arguments: up, 0.5 meters, 0.5 seconds Where duration is optional

27 Kinds of Parameters Alice provides several kinds of parameters that can be used in custom methods o Number, Boolean, Object, Other Create parameter using Create parameter bandmember is passed as Object parameter

28 Place bandmember in Method Drag bandmember to editor

29 Create More Parameters Click on create new parameter

30 Drag bandmember to Editor Fill in parameters:

31 Placeholders A value is passed to a method with an argument Parameters act as placeholders for the argument o Takes value of argument being passed and uses it in method o Parameter name is likely to be different than argument Example: in move method o You pass arguments that are specific direction and distance to move (ex: up, 0.5 meters) o Those specific arguments are passed to the move method s parameters (direction and distance)

32 BeetleBand-v2 New solo method is added for each band member and music to play

33 Demo BeetleBand-v2 Concepts illustrated o Enter name and select type for each parameter bandmember is an Object parameter music is a Sound parameter o Arguments passed to parameters in called method bandmember: georgebeatle, lennonbeatle, paulbeetle, ringobeatle What are the arguments passed into music parameter? o Parameters are placeholders bandmember and music get new values when called

34 Homework Read chapter 6 sections 3,4,6,7 Answer questions in handout Do lab assignments after handing in answered questions Due one week after assigned with 1 week grace

Classes, Objects, and World-level Methods. Alice

Classes, Objects, and World-level Methods. Alice Classes, Objects, and World-level Methods Alice Larger Programs As you become more skilled in writing programs, you will find that programs quickly increase to many, many lines of code. Games and other

More information

Class-level Methods. Chapter 6 part 1

Class-level Methods. Chapter 6 part 1 Class-level Methods Chapter 6 part 1 Classes and Objects Classes o In Alice, classes are predefined as 3D models Objects o An object is an instance of a class Class: Frog (Uppercase first letter) Objects:

More information

Variables and Functions Chapter 3

Variables and Functions Chapter 3 Variables and Functions Chapter 3 3-1 Variables Named storage location in computer s memory Programs may need to store data when running o Stored in a variable Types of data that can be stored o Local

More information

Decision Structures. Chapter 4

Decision Structures. Chapter 4 Decision Structures Chapter 4 Chapter 4 Objectives To understand: o What values can be stored in a Boolean variable o What sequence structures are and when used o What decision structures are and when

More information

Methods in Alice. Brookwood High School Mrs. Crystal L. Furman

Methods in Alice. Brookwood High School Mrs. Crystal L. Furman Methods in Alice Brookwood High School Mrs. Crystal L. Furman Methods Alice breaks methods up into 2 categories 1 Procedures: Procedures are methods that have object do something. They are commands. 2

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

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

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

Anjuli Kannan. Google Earth Driving Simulators (3:00-7:00)

Anjuli Kannan. Google Earth Driving Simulators (3:00-7:00) Google Earth Driving Simulators (3:00-7:00) An example of what you can do by learning the GoogleEarth API, once you know how to write code Google has published such an API so that people can make programs

More information

Gaddis: Starting Out with Alice Test Bank Chapter Two 1 Chapter Two

Gaddis: Starting Out with Alice Test Bank Chapter Two 1 Chapter Two Gaddis: Starting Out with Alice Test Bank Chapter Two 1 Chapter Two MULTIPLE CHOICE 1. What is the name of the default world method that automatically runs when an Alice program is executed? a. the first

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

A Simple Quiz for Alice 3.2: Ask User Functions.

A Simple Quiz for Alice 3.2: Ask User Functions. A Simple Quiz for Alice 3.2: Ask User Functions. By Lana Dyck under the direction of Professor Susan Rodger Duke University June 2009, added Part 2 July 2011, Edited for Alice 3 use and Part 3,4 added

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

What Is Alice? Classes and Objects. The Power of Alice. A modern programming tool 3-D graphics 3-D models of objects

What Is Alice? Classes and Objects. The Power of Alice. A modern programming tool 3-D graphics 3-D models of objects What Is Alice? Vizualization Friday Forum September 23, 2005 A modern programming tool 3-D graphics 3-D models of objects Animation Objects can be made to move around virtual world (a simulation or video

More information

Telling a Story Visually. Copyright 2012, Oracle. All rights reserved.

Telling a Story Visually. Copyright 2012, Oracle. All rights reserved. What Will I Learn? Objectives In this lesson, you will learn how to: Compare and define an animation and a scenario Demonstrate how to use the four problem solving steps to storyboard your animation Use

More information

2.9 Modularization. Department of CSE,Coimbatore

2.9 Modularization. Department of CSE,Coimbatore 2.9 Modularization Objectives To understand how algorithms are modularized. To learn how smaller units can be made flexible through the use of formal parameters. To understand the characteristics of well-defined

More information

Marking Period 1. Marking Period 2

Marking Period 1. Marking Period 2 DEPARTMENT: Mathematics COURSE: Programming Through Games & Simulation Week Marking Period 1 1 Intro to Greenfoot 2 Little Crabs 3 Little Crabs 4 Fishing the Crab Game 5 Fishing the Crab Game 6 Fat Cat

More information

New Perspectives on PowerPoint Module 2: Adding Media and Special Effects

New Perspectives on PowerPoint Module 2: Adding Media and Special Effects New Perspectives on PowerPoint 2016 Module 2: Adding Media and Special Effects Objectives, Part 1 Apply a theme used in another presentation Insert shapes Format shapes and pictures Rotate and flip objects

More information

GETTING AROUND STAGE:

GETTING AROUND STAGE: ASM FLASH INTRO FLASH CS3 is a 2D software that is used extensively for Internet animation. Its icon appears as a red square with a stylized Fl on it. It requires patience, because (like most computer

More information

IT Introduction to Programming for I.T. Midterm Exam #1 - Prof. Reed Spring 2008

IT Introduction to Programming for I.T. Midterm Exam #1 - Prof. Reed Spring 2008 IT 101 - Introduction to Programming for I.T. Midterm Exam #1 - Prof. Reed Spring 2008 What is your name?: (0 points) There are two sections: I. True/False..................... 20 points; ( 10 questions,

More information

Choose the best answer from each of the following; answer A for True, B for False for any T/F questions.

Choose the best answer from each of the following; answer A for True, B for False for any T/F questions. Alice Quiz: Chapters 1-3 Choose the best answer from each of the following; answer A for True, B for False for any T/F questions. 1) According to the Alice text, learning to program makes you a computer

More information

How to Use Windows Movie Maker to Create a Video

How to Use Windows Movie Maker to Create a Video How to Use Windows Movie Maker to Create a Video Windows Movie Maker is a free video-editing program that typically comes with any computer running Windows XP, Windows Vista, and Windows 7. Videos area

More information

9. Simple contact forms

9. Simple contact forms 9. Simple contact forms Learn how to create a simple contact form for your TYPO3 website, as shown in the example on the right. With this form you are able to add/edit the fields, set a receiving e-mail

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

WINTER BREAK HOLIDAY HOMEWORK

WINTER BREAK HOLIDAY HOMEWORK WINTER BREAK HOLIDAY HOMEWORK COMPUTER CLASS - 6rd TO 7th Let us do practice now Type-I(Short Answers based Questions) What is the default size of the text? 2. Name the box that contains font size, font

More information

Program Planning, Data Comparisons, Strings

Program Planning, Data Comparisons, Strings Program Planning, Data Comparisons, Strings Program Planning Data Comparisons Strings Reading for this class: Dawson, Chapter 3 (p. 80 to end) and 4 Program Planning When you write your first programs,

More information

Using nu/tpu on UNIX Last revised: 1/28/00

Using nu/tpu on UNIX Last revised: 1/28/00 Using nu/tpu on UNIX Last revised: 1/28/00 nu/tpu is a general-purpose text editor available on UNIX that simulates the TPU editor available on VMS operating systems. By default nu/tpu emulates the EDT

More information

CompSci 94 Making Decisions February 8, Prof. Susan Rodger

CompSci 94 Making Decisions February 8, Prof. Susan Rodger CompSci 94 Making Decisions February 8, 2018 Prof. Susan Rodger CompSci 94 Spring 2018 1 Class Today Asking questions and making decisions Using functions If statements CompSci 94 Spring 2018 2 Review

More information

Click Freegal Music from the surreylibraries.ca (hover over the blue Research and Downloads tab and select Downloads.

Click Freegal Music from the surreylibraries.ca (hover over the blue Research and Downloads tab and select Downloads. Freegal Quick Facts Freegal gives Surrey residents with a valid Surrey Libraries card 3 free songs per week. Residents can download and KEEP the songs. You simply log into Freegal with your library card

More information

PowerPoint Level 2. An advanced class in presentation software. Phone: SCIENCE SKILL SOLUTIONS TECH CENTER

PowerPoint Level 2. An advanced class in presentation software. Phone: SCIENCE SKILL SOLUTIONS TECH CENTER PowerPoint Level 2 An advanced class in presentation software Phone: 392-3900 Email: training@vpha.ufl.edu TECH SKILL SOLUTIONS FOR THE HEALTH SCIENCE CENTER Last modified December 13, 2001 Using the Slide

More information

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 1 The Blender Interface and Basic Shapes

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 1 The Blender Interface and Basic Shapes Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 1 The Blender Interface and Basic Shapes Introduction Blender is a powerful modeling, animation and rendering

More information

Advanced PowerPoint. Course Description. Objectives: Using Master Slides. Using a Notes Master and a Handout Master. Add a Picture to a master

Advanced PowerPoint. Course Description. Objectives: Using Master Slides. Using a Notes Master and a Handout Master. Add a Picture to a master Course Description Advanced PowerPoint In the PowerPoint Introduction course, you learned how to create a new presentation, work with text objects, insert objects to enhance the presentation, add a background

More information

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

Alice 3 Workshop. CS & IT Irvine, CA July 9, Copyright 2012 Wanda Dann, Don Slater, Steve Cooper Alice 3 Workshop CS & IT Irvine, CA July 9, 2012 Research Group Wanda Dann Steve Cooper Don Slater Jacobo Carrasquel Dennis Cosgrove Dave Culyba Laura Paoletti Matt May Cleah Schlueter Sponsors Agenda

More information

Lesson 6: Add Animations, Audio, and Video Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO

Lesson 6: Add Animations, Audio, and Video Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Lesson 6: Add Animations, Audio, and Video Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Animate with ready-made effects. Customize animation effects. Add audio content. Insert and play

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

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

Methods & Classes in Alice

Methods & Classes in Alice Part A Creating Custom Methods for an Object Alice provides primitive methods with each class to allow the programmer to accomplish some basic tasks such as movement. Some classes also include custom methods

More information

Downloaded from

Downloaded from Chapter 4 Advance features of MS PowerPoint Inside this chapter : Inserting different objects (i.e. images, Word Arts, audio & video etc.), Transitions in slide, Custom Animation with text. PowerPoint

More information

GET FAMILIAR WITH WINDOWS MOVIE MAKER

GET FAMILIAR WITH WINDOWS MOVIE MAKER GET FAMILIAR WITH WINDOWS MOVIE MAKER TASKS SELECTION COLLECTION PALETTE PREVIEW SCREEN PRODUCTION PALETTE The production palette has two modes: storyboard and timeline. To switch between the two click

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

New buttons New buttons: Excel View & settings 2/3. Excel View & settings 1/3 PLEASE SKIP THIS SLIDE. It s old. Excel View & settings 3/3

New buttons New buttons: Excel View & settings 2/3. Excel View & settings 1/3 PLEASE SKIP THIS SLIDE. It s old. Excel View & settings 3/3 Common user interface, yet new stuff Notice the following: Excel has tabs and buttons similar to Word new tabs: Formulas, Data new features: name box Formula bar Current Sheet1 is active. Click + to add

More information

Exit: These control how the object exits the slide. For example, with the Fade animation the object will simply fade away.

Exit: These control how the object exits the slide. For example, with the Fade animation the object will simply fade away. PowerPoint 2013 Animating Text and Objects Introduction In PowerPoint, you can animate text and objects such as clip art, shapes, and pictures. Animation or movement on the slide can be used to draw the

More information

Events (Alice In Action, Ch 6)

Events (Alice In Action, Ch 6) CS 101 Lecture 27 Events (Alice In Action, Ch 6) 31 July 2013 Slides Credit: Joel Adams, Alice in Action Objectives Create new events in Alice Create handler methods for Alice events Use events to build

More information

Creating a slideshow with captions

Creating a slideshow with captions Creating a slideshow with captions Follow these instructions to create a slideshow that shows a timeline of events in chronological order. Open Windows Live Movie Maker Add photos - add content by clicking

More information

Scratch Lesson 2: Movies Made From Scratch Lesson Framework

Scratch Lesson 2: Movies Made From Scratch Lesson Framework Scratch Lesson 2: Movies Made From Scratch Lesson Framework Scratch makes it easy to program your own interactive stories, games, and animations and share your creations on the web. As you create and share

More information

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

First, collect your digital photos prior to starting this project. You may want to storyboard (plan) your PhotoStory also.

First, collect your digital photos prior to starting this project. You may want to storyboard (plan) your PhotoStory also. PhotoStory 3 Microsoft PhotoStory 3 allows you to create a digital slideshow of your photos with music and narration. It s a free download at http://www.microsoft.com/windowsxp/using/digitalphotography/photostory/default.mspx.

More information

Animate a Name Cards

Animate a Name Cards Animate a Name Cards Animate the letters of your name, initials, or favorite word. Animate Your Name 1 Set of 7 cards Animate a Name Cards Try these cards in any order: Color Clicker Spin Play a Sound

More information

Microsoft PowerPoint 2016 Part 2: Notes, Links, & Graphics. Choosing a Design. Format Background

Microsoft PowerPoint 2016 Part 2: Notes, Links, & Graphics. Choosing a Design. Format Background Microsoft PowerPoint 2016 Part 2: Notes, Links, & Graphics Choosing a Design Open PowerPoint. Click on Blank Presentation. Click on the Design tab. Click on the design tab of your choice. In part one we

More information

SCRATCH MODULE 3: NUMBER CONVERSIONS

SCRATCH MODULE 3: NUMBER CONVERSIONS SCRATCH MODULE 3: NUMBER CONVERSIONS INTRODUCTION The purpose of this module is to experiment with user interactions, error checking input, and number conversion algorithms in Scratch. We will be exploring

More information

Alice Methods and Classes. Methods and Classes

Alice Methods and Classes. Methods and Classes Alice Methods and Classes Methods and Classes Methods Coordinated sequence of instructions carried out when requested (e.g. move, turn to, etc.) Class A class defines an object, in our cases the 3D models

More information

Sound Editing in Final Cut Studio Creating a Sound Mix

Sound Editing in Final Cut Studio Creating a Sound Mix Sound Editing in Final Cut Studio Creating a Sound Mix Part 1: Smoothing Edits with Fades Part 2: Setting Audio Levels upart 3: Using Keyframes to Automate a Mixo Part 4: Creating Perspective Effects Part

More information

Introduction to Computer Science with MakeCode for Minecraft

Introduction to Computer Science with MakeCode for Minecraft Introduction to Computer Science with MakeCode for Minecraft Lesson 4: Variables In this lesson, we ll explore the concept of a variable, an important way to store information and make your programs more

More information

Windows Movie Maker Reinforcement Handout

Windows Movie Maker Reinforcement Handout Windows Movie Maker Reinforcement Handout Windows Live Movie Maker is the fast, easy way to turn photos and videos into greatlooking movies and slide shows you can share with your class, on the Web, or

More information

EDITING ON FINAL CUT PRO

EDITING ON FINAL CUT PRO EDITING ON FINAL CUT PRO BUILDING BLOCKS OF A FINAL CUT PRO PROJECT: Projects (Think of it as a big folder, or your binder), which include all the elements of your movie, such as clips, sequences, and

More information

Introduction to Unreal Engine Blueprints for Beginners. By Chaven R Yenketswamy

Introduction to Unreal Engine Blueprints for Beginners. By Chaven R Yenketswamy Introduction to Unreal Engine Blueprints for Beginners By Chaven R Yenketswamy Introduction My first two tutorials covered creating and painting 3D objects for inclusion in your Unreal Project. In 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

PowerPoint : :. PowerPoint

PowerPoint : :. PowerPoint PowerPoint : :. PowerPoint. PowerPoint. PowerPoint. PowerPoint. PowerPoint PowerPoint.... Microsoft Office.. ( ) PowerPoint PowerPoint Excel Word. Office.. PowerPoint PowerPoint. :. Start. All programs.

More information

Tech Guide XMind. Where to find it:

Tech Guide XMind. Where to find it: Tech Guide XMind Where to find it: http://www.xmind.net/ What it is: XMind is a free, open source multimedia software package. Used for mind mapping and visually organizing information and ideas. XMind

More information

Tutorial00. Jumping down the rabbit hole

Tutorial00. Jumping down the rabbit hole Tutorial00 Jumping down the rabbit hole This is your quick introduction into the world of ALICE. ALICE program provides us with an interface that allows the user to create 3D animation and write computer

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

Welcome to COMP 388 Tutorial on:

Welcome to COMP 388 Tutorial on: Welcome to COMP 388 Tutorial on: 5.0 By: Chris Abplanalp TABLE OF CONTENTS 1. What are the ways to go back to the originally working window when accidentally switched to another program by pushing some

More information

Figure 1: My Blocks are blue in color, and they appear in the Custom palette in NXT-G.

Figure 1: My Blocks are blue in color, and they appear in the Custom palette in NXT-G. What is a My Block? The Common and Complete palettes in the NXT-G programming system contain all of the built-in blocks that you can use to create an NXT program. The NXT-G software also allows you to

More information

ViewSonic Elite XG240R Cooler Master MasterPlus+ Software How-To GUIDE

ViewSonic Elite XG240R Cooler Master MasterPlus+ Software How-To GUIDE ViewSonic Elite XG240R Cooler Master MasterPlus+ Software How-To GUIDE 1 Getting Started TABLE OF CONTENTS Activating your monitor s RGB... 1 Downloading Cooler Master MasterPlus+ software... 1 Basic lighting

More information

DIRECTV Message Board

DIRECTV Message Board DIRECTV Message Board DIRECTV Message Board is an exciting new product for commercial customers. It is being shown at DIRECTV Revolution 2012 for the first time, but the Solid Signal team were lucky enough

More information

The Oracle Academy Supports 1.5 million students in 95 countries

The Oracle Academy Supports 1.5 million students in 95 countries The Oracle Academy Supports 1.5 million students in 95 countries Delivers a complete portfolio of software, curriculum, training, support and certification resources Helps students develop industryrelevant

More information

Welcome to Sinclair Wilson Movie Making!

Welcome to Sinclair Wilson Movie Making! Welcome to Sinclair Wilson Movie Making! Today you are going to create a Movie Trailer using imovie on an ipad A trailer or preview is an advertisement or a commercial for a feature film that will be exhibited

More information

imovie 08 Apple s Free Video Editor

imovie 08 Apple s Free Video Editor Apple s Free Video Editor Important Concepts - Play: press the space bar to play and pause - Skim: drag (do not click) the mouse over a filmstrip to, well, skim the footage - Select: click, hold and drag

More information

Creating and Triggering Animations

Creating and Triggering Animations Creating and Triggering Animations 1. Download the zip file containing BraidGraphics and unzip. 2. Create a new Unity project names TestAnimation and set the 2D option. 3. Create the following folders

More information

I wish to thank the unknown photographer who has clicked these photos.

I wish to thank the unknown photographer who has clicked these photos. This is a basic tutorial on how to use imovie to produce your photo essay video. You can use imovie or any other software which you are comfortable with or have access to. These instructions are just for

More information

Peeking into Computer Science Alice Lab Manual. Lab Manual. Programming

Peeking into Computer Science Alice Lab Manual. Lab Manual. Programming Lab Manual Programming 1 Alice Lab 1: Introduction 2 Table of Contents Lab 1: Introduction... 5 The Alice Interface... 6 Objects... 6 Lab 2: Sequential & Parallel Execution... 15 Do in order... 15 Do together...

More information

PowerPoint Applying Transitions. Introduction. About transitions

PowerPoint Applying Transitions. Introduction. About transitions PowerPoint 2016 Applying Transitions Introduction If you have ever seen a PowerPoint presentation that had special effects between each slide, you've seen slide transitions. A transition can be as simple

More information

Methods Tutorial: Part Two. By Deborah Nelson Duke University Professor Susan Rodger June 16, 2008

Methods Tutorial: Part Two. By Deborah Nelson Duke University Professor Susan Rodger June 16, 2008 Methods Tutorial: Part Two By Deborah Nelson Duke University Professor Susan Rodger June 16, 2008 We will now complete the world that you started in part one of the tutorial entitled "Methods." If you

More information

Finite State Machines

Finite State Machines Finite State Machines Finite State Machines (FSMs) An abstract machine that can exist in one of several different and predefined states Defines a set of conditions that determine when the state should

More information

Start menu. Toggles between All Programs & Back

Start menu. Toggles between All Programs & Back Microsoft Windows Vista Illustrated Introductory Working with Windows Programs Objectives Start a program Open and save a WordPad document Modify text in WordPad Work with a graphic in Paint 2 Objectives

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

How to Submit a New UIW IRB Application

How to Submit a New UIW IRB Application How to Submit a New UIW IRB Application Step Log In Visit https://uiw.forms.ethicalreviewmanager.com/ click on at the top right corner of the page. New Users: Click on New User Fill in the applicable information

More information

Information and Creative Technology

Information and Creative Technology Information and Creative Technology Unit 2 Technology Systems Analogue and Digital data Introduction Analogue data occurs in the natural world and changes constantly with time. Examples include the human

More information

University of Pennsylvania Department of Electrical and Systems Engineering Digital Audio Basics

University of Pennsylvania Department of Electrical and Systems Engineering Digital Audio Basics University of Pennsylvania Department of Electrical and Systems Engineering Digital Audio Basics ESE250 Spring 2013 Lab 7: Psychoacoustic Compression Friday, February 22, 2013 For Lab Session: Thursday,

More information

By Ruthie Tucker Under the direction of Professor Susan.

By Ruthie Tucker Under the direction of Professor Susan. Tutorial for Arrays and Lists By Ruthie Tucker Under the direction of Professor Susan Rodger, Duke University 2008 www.cs.duke.edu/csed/alice/aliceinschools Description This presentation will cover the

More information

Skills covered: Add a Table Insert, Move, and Resize Clip Art Apply a Transition Animate Objects Create a Handout Header and Footer

Skills covered: Add a Table Insert, Move, and Resize Clip Art Apply a Transition Animate Objects Create a Handout Header and Footer HANDS-ON EXERCIS HOE3 Training 3 Presentation Development You decide to strengthen the slide show by adding objects. You know that adding clip art and additional information in a table will help state

More information

Module 2: Content Development Organize Course Materials

Module 2: Content Development Organize Course Materials Module 2: Content Development Organize Course Materials Three Ways To Access Files View Files Structure Import Files View Course Structure Create Modules Lock Modules Syllabus I: Overview Syllabus II:

More information

Writing and Running Programs

Writing and Running Programs Introduction to Python Writing and Running Programs Working with Lab Files These instructions take you through the steps of writing and running your first program, as well as using the lab files in our

More information

ECE/CS 3710 Computer Design Lab Lab 2 Mini-MIPS processor Controller modification, memory mapping, assembly code

ECE/CS 3710 Computer Design Lab Lab 2 Mini-MIPS processor Controller modification, memory mapping, assembly code ECE/CS 3710 Computer Design Lab Lab 2 Mini-MIPS processor Controller modification, memory mapping, assembly code Due Tuesday, September 22nd, 2009 Laboratory Objectives Understand and extend a very very

More information

Computer graphics 2: Graduate seminar in computational aesthetics

Computer graphics 2: Graduate seminar in computational aesthetics Computer graphics 2: Graduate seminar in computational aesthetics Angus Forbes evl.uic.edu/creativecoding/cs526 Computer Graphics 2 instructor angus graeme forbes course syllabus http://evl.uic.edu/creativecoding/cs526

More information

1. In the accompanying figure, the months were rotated by selecting the text and dragging the mouse pointer up and to the right.

1. In the accompanying figure, the months were rotated by selecting the text and dragging the mouse pointer up and to the right. Excel: Chapter 3 True/False Indicate whether the statement is true or false. Figure 3-3 1. In the accompanying figure, the months were rotated by selecting the text and dragging the mouse pointer up and

More information

Alice Tutorial 2. Downloading Tutorials

Alice Tutorial 2. Downloading Tutorials Alice Tutorial 2 Downloading Tutorials Please note that all tutorial resources must be downloaded in Firefox. Navigate to the link provided to you by your class tutor. Right click on each of the tutorial

More information

Microsoft Office 2003 Beginning Microsoft Word

Microsoft Office 2003 Beginning Microsoft Word Microsoft Office 2003 Beginning Microsoft Word Objective 1: Become acquainted with the Microsoft Word environment. Toolbars Standard Toolbar Formatting Toolbar Toolbars provide easy access to commonly

More information

Guide to accessibility for students

Guide to accessibility for students T215 Communication and information technologies Guide to accessibility for students Contents 1 Introduction 2 Module components 2.1 Block text 2.2 Supplementary text 2.3 T215 website 2.4 Module DVD 2.5

More information

2. Getting Started When you start GeoGebra, you will see a version of the following window. 1

2. Getting Started When you start GeoGebra, you will see a version of the following window. 1 Math 5335 Fall 2018 Lab #0: Installing and using GeoGebra This semester you will have a number of lab assignments which require you to use GeoGebra, a dynamic geometry program. GeoGebra lets you explore

More information

The Many Uses of ALE

The Many Uses of ALE The Many Uses of ALE ALE is the file format used by Media Composer to easily import/export clip based metadata. Because it is a text- based format, it is easy for anyone to read, edit, and create logs

More information

1.1 Considering for Choosing Layout in SmartArt Graphics

1.1 Considering for Choosing Layout in SmartArt Graphics 1. SmartArt A SmartArt graphic is a visual representation of your information that you can quickly and easily create, choosing from among many different layouts, to effectively communicate your message

More information

Crossley Fields - Computing Vocabulary

Crossley Fields - Computing Vocabulary Crossley Fields - Computing Vocabulary Glossary of terms taken from Kirklees Guidance, CAS/NAACE Computing in the National Curriculum & MIT Scratch Reference Guide. A Algorithm an unambiguous procedure

More information

Due to conversion of powerpoint to PDF some of the Animation, all of the sound and any inserted video Will Not play in the PDF version, when given in

Due to conversion of powerpoint to PDF some of the Animation, all of the sound and any inserted video Will Not play in the PDF version, when given in Due to conversion of powerpoint to PDF some of the Animation, all of the sound and any inserted video Will Not play in the PDF version, when given in a Workshop or lecture setting the actual PPT files

More information

using Arrays and Lists in an Alice world Prerequisites Everything World.OpeningScene Cinderella.end the chickens while they dance.

using Arrays and Lists in an Alice world Prerequisites Everything World.OpeningScene Cinderella.end the chickens while they dance. Tutorial for Arrays and Lists Description This presentation will cover the basics of using Arrays and Lists in an Alice world It uses a set of chickens on a farm Prerequisites Everything By Ruthie Tucker

More information

Chapter 15: Object Oriented Programming

Chapter 15: Object Oriented Programming Chapter 15: Object Oriented Programming Think Java: How to Think Like a Computer Scientist 5.1.2 by Allen B. Downey How do Software Developers use OOP? Defining classes to create objects UML diagrams to

More information

Exploring Alice and Object-Oriented Programming

Exploring Alice and Object-Oriented Programming Exploring Alice and Object-Oriented Programming PROJECT CASE PERSPECTIVE Dr. Carole Dodgson needs your help. She would like to use a sample virtual world to demonstrate some fundamental concepts of computer

More information

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch Purpose: We will take a look at programming this week using a language called Scratch. Scratch is a programming language that was developed

More information