Digital Media. Seasons Assignment. 1. Copy and open the file seasonsbegin.fla from the Read folder.

Size: px
Start display at page:

Download "Digital Media. Seasons Assignment. 1. Copy and open the file seasonsbegin.fla from the Read folder."

Transcription

1 Digital Media Seasons Assignment 1. Copy and open the file seasonsbegin.fla from the Read folder.

2 2. Make a new layer for buttons. Create a button that the user will click to start the interaction. (Be sure to give the button an instance name in the scene!)

3 3. Make a new layer for actions. Open the actions for frame 1, and begin with a stop statement. Then add an event listener for the button you created in step 2, sending Animate to frame 2. Note that the import statement in line 1 will normally appear automatically after you complete the addeventlistener line. If it does not, create a new line and type in the import statement manually.

4 4. Test your project. When it first opens, it should be frozen on frame 1. Click the Start button; does anything happen? It may appear that nothing changes, but there are several methods we can use to test that. One is by using the trace function, which can be very useful for troubleshooting. In the code for the Start button, add a line that uses the trace function to print out a message. The message itself is not important, and it will not appear in the test window. It will, however, print out in the output tab of Animate, and will tell us whether the Start button is functioning at all. Note that whatever is inside quotes is shown in green, and that will print out exactly character for character in the output tab. Now when you test again and click the Start button, you should see: (or whatever you entered in the trace command). Because the trace function worked properly, the button itself seems to be functioning. In other words, Animate really is going to frame 2. Why don t we see it? Perhaps it is going to frame 2, but then returning to frame 1 so quickly that we cannot see it. We can test this by entering a stop statement in frame 2 of the actions. After inserting a blank keyframe on frame 2 of the actions layer, and adding a stop statement, the animation should stop on frame 2.

5 5. The library contains four images related to the seasons. From the library panel, click and drag the Autumn image on to the stage either on to the buttons layer or to a new layer that you create, such as seasonimages. Convert the image to a symbol. In the dialogue box that opens, set the symbol to Movie Clip, and click the box labeled Export for ActionScript. (If you do not see that option, you might need to expand the Advanced section of the dialogue.) Animate will by default give a Class name which is the same as the name of the movie clip. You can keep that name, or change it to something such as AutumnMC. Click OK twice to return to the stage. You should now see the Class name displayed to the right of the movie clip in the library panel.

6 6. Repeat this process for the Spring, Summer, and Winter images. 7. Position the season movie clips on the stage as desired. Select each individual movie clip and note its position (x and y coordinates) in the Properties panel. You might want to write down these coordinates, as you will need to enter them in ActionScript. 8. Now that you have the locations picked for the seasons, you do not need the movie clips on the stage anymore. Delete them from the stage (but not from the library!). 9. Declare a variable for each of the season movie clips, using the Class name that you assigned to each previously. (You should still be in frame 2, on the actions layer.) 10. Add the season movie clips back into the scene by using an addchild statement in ActionScript. This is where you will need to know the positions where you want to place the movie clips. You

7 will not see the movie clips until you test the movie. Your positions may be different; these are provided simply as an example. This adds an instance of the Autumn movie clip at position 800, If you test your project at this point, you should notice a few issues. First, when you click the Start button and advance to frame 2, the Start button still appears. We will fix that in the next steps. Second, if you click the Start button while in frame 2, it will take you to frame 1, even though we have not entered any code to tell it to do so. This is also no problem, as you will soon see. Third, if you advance to frame 2 and then return to frame 1, the season movie clips will still be on the stage, even though we would like them to be gone. Fear not, we shall also remedy that situation quite soon. ***** Publish your file at this point and submit as Last_First_Seasons1.swf. ***** 12. Insert a blank keyfame in frame 2 of the buttons layer. This will remove the Start button from the scene in frame 2. Note that simply deleting buttons that have had ActionScript applied to them sometimes causes problems; it may be necessary later on to bring that button back, but move it off stage so it is out of sight. If you have any concerns that this could happen, you are welcome to keep the button now by inserting a keyframe in frame 2 rather than a blank keyframe, but be sure to move the Start button off of the stage. 13. Insert a new layer, which will host a thermometer, and insert a keyframe at frame 2. Drag a copy of the thermometer movie clip from the library into the location that had been occupied by the Start button. Select the thermometer movie clip into the scene but off of the stage and give it an instance name, such as Thermometer_mc.

8 Create an instance of the thermometer movie clip and make it visible on the stage by using the desired x and y values (in frame 2 of the actions layer), as you did with the seasons images: 14. With the thermometer selected, click on Window Code Snippets and expand the Actions folder. Double click the Drag and Drop listing; this will automatically enter some code for the thermometer in your actions.

9 15. We need to make one edit to the code snippet. The ReleaseToDrop function begins with an event listener added to the stage. This means the code will apply as soon as the user enters that frame (frame 2), where the stage is present. We want this function to apply only after the user has dragged the thermometer and then released it, so change the word stage to the name of your thermometer movie clip. becomes 16. Next we want to encourage the user to drag the thermometer to one of the seasons. We can create a text box that will do so. We will be using several text boxes in this project, so create a layer for text (Note that it is common practice to keep the actions layer at the top, so insert a new layer below that.) and insert a keyframe in frame 2. Then create a static textbox (the text remains constant) directing the user to drag the thermometer to one of the movie clips. Make sure the font is readable against the background picture.

10 17. You can (actually should) now delete the thermometer from the stage; the ActionScript you added in Step 13 will place an instance of it on the stage. 18. Now we want to be able to tell which season the user selects. One way to do so is by detecting a collision between the thermometer and one of the seasons. Say for example the user drags the thermometer to the Spring movie clip. We would like that to trigger some additional events, such as moving to a scene that has a spring-like image, or even a spring-themed animation. (The possibilities are limitless see what springs to mind!) And while we might wish to keep the Spring movie clip visible in our scene, we would like to at least hide the other three seasons. Because the seasons are movie clips, which have had variables associated with them, we can use a binary visibility function to turn the movie clips on and off: set the visible status to true or false. Note these actions are in frame 2. Also, the hittestobject function could cause some difficulties if we do not make the thermometer movie clip disappear. A quick way to do this would be to turn the visibility to false, but unfortunately that simple trick often causes errors in Animate. Another option is to immediately move the movie clip off-stage, by assigning an x or y-coordinate that is clearly outside of the 1280 x 720 dimensions of the stage: 19. This particular example sends the user to frame 3 if he/she selects Spring, so now we need a frame 3. We can start by adding a keyframe to the background layer in frame 3, and then deleting and replacing the background image, or by inserting a blank keyframe (which will automatically remove the image) and placing a new image in place. Also insert a blank keyframe on the actions layer, and create a stop statement in frame 3, so that the animation does not automatically advance. 20. Next we want to create a system that will convert a Fahrenheit temperature that the user enters into Celsius. This will include three different types of text boxes: a static text box to direct the user, an input text box where the user enters a temperature, and a dynamic text box that will output a converted temperature. Create a static text box that requests the user enter a temperature in Fahrenheit, and click a convert button. Create an input text box for the user to enter a temperature. Note that input and dynamic text boxes need instance names. Check the Show border around text option, so that the user can see the text box. Also, be sure to embed fonts, for numbers at a minimum, but you can also check upper and lower case letters.

11 Important detail: Looking ahead, you will be using an input text box for each season. Animate will not be happy, however, if you try to use the same text box with the same instance name in multiple frames. To prevent errors, you might want to add a unique identifier to the instance name, such as the frame number. Note the example for frame 3: FahrIn3Box.

12 21. Of course we will also need a Convert button. Create one and place it on the stage, on the buttons layer. (Insert a blank keyframe on the buttons layer first.) You can reuse this button for the other seasons, but they should have different instance names, so you might want to give it an instance name corresponding to the season. In this example, the button itself is called Convert_btn, but the instance name is Convert_Spring_btn. 22. Add an event listener to the Convert button, which will send the user ahead one frame to show the converted temperature. 23. We will need several variables for our conversion, all of which will be numbers. For starters, consider the temperature that the user inputs. Although it is a number, it is entered in a text box, which means it has a String data type. We can convert it to a Number data type by a process known as casting. In this example, tempfahr is the name of the variable representing the temperature in Fahrenheit, and FahrInBox is the name of the text box where the user enters a temperature. We will need another variable to represent the Celsius temperature, which we will find by converting the input temperature into Celsius. Place these declarations in frame 1 or 2!

13 24. Now that we have these variables, we can add some code to our Convert button actions (frame 3). We want to cast the input temperature to a Number data type, and round it to an integer in case the user enters a decimal, and then convert that temperature to Celsius, again rounding. Add these two lines to your already existing convert function..text takes whatever text has been entered in the named text box Here we are casting the text to a Number data type. 25. In frame 4 of this example (your frame numbers might be different), we want to provide the user with the converted temperature, as well as an option to go back to the beginning. Create a dynamic text box which will display the temperature in Celsius. You may also create a static text box which indicates something about the fact that Celsius is indicated, and perhaps even another dynamic text box that shows the Fahrenheit temperature that the user entered in the previous step. Note: Part of the student s task here is to determine which layers may need a keyframe or blank keyframe for frame 4. Don t forget instance names for any dynamic text boxes you use! Also remember that you may wish to include a reference to the frame number or season in the instance names.

14 Dynamic text boxes frequently have the Show border around text option disabled, but that is personal preference. 26. Now we need the code to display the desired temperature(s). Here is an example: Note that the temperatures have been cast to String data types, because they will appear in text boxes. 27. Create some type of Restart button, so that the user can go back to the beginning (frame 2 in this case). This button should also turn off the visibility of the thermometer (which is put back in place upon returning to frame 2) and the current season movie clip (Spring in this case). ***** Publish and turn in your project as Last_First_Seasons2.swf. ***** 28. So far you should have a welcome scene, a scene with four images representing the seasons, a thermometer that the user can drag to a season, and an action that occurs if the user drags the thermometer to the Spring movie clip instance. Complete the project by creating actions for the remaining three seasons. If you want a similar action to take place for each season, you will be able to copy and paste much of your project, and make some changes in the code to reflect the different seasons. If you want more variety, this will of course entail more work but it may be worth the extra effort! ***** Publish and turn in your completed project as Last_First_Seasons3.swf. *****

AO3. 1. Load Flash. 2. Under Create New click on Flash document a blank screen should appear:

AO3. 1. Load Flash. 2. Under Create New click on Flash document a blank screen should appear: AO3 This is where you use Flash to create your own Pizzalicious advert. Follow the instructions below to create a basic advert however, you ll need to change this to fit your own design! 1. Load Flash

More information

The Timeline records the actions in each Frame. It also allows multiple independent images and actions through Layers.

The Timeline records the actions in each Frame. It also allows multiple independent images and actions through Layers. Using Flash to Create Animated Environments Objectives: Understand the capabilities of Flash Gain a general overview of features and tools Understand layers, text, graphics, animation and buttons Import

More information

Loading from external sources

Loading from external sources Loading from external sources You have learnt some quite complicated things with Flash and it is true that most flash applications and websites don t contain half the actionscriping we have looked at,

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

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

What will you learn: A better understanding of 3 D space How to use keyframes Designing and planning an animation How to render animations

What will you learn: A better understanding of 3 D space How to use keyframes Designing and planning an animation How to render animations Intro to Blender Introductory Animation Shane Trautsch Crestwood High School Welcome Back! Blender can also be used for animation. In this tutorial, you will learn how to create simple animations using

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

More information

Basic Operation of Flash MX Professional 2004

Basic Operation of Flash MX Professional 2004 Basic Operation of Flash MX Professional 2004 (Main Tutorial) This Tutorial provides you Basic Operation for Flash MX Professional 2004. After this training, you will be able to create simple animation.

More information

Adobe Flash CS3 Reference Flash CS3 Application Window

Adobe Flash CS3 Reference Flash CS3 Application Window Adobe Flash CS3 Reference Flash CS3 Application Window When you load up Flash CS3 and choose to create a new Flash document, the application window should look something like the screenshot below. Layers

More information

Spring CS Homework 3 p. 1. CS Homework 3

Spring CS Homework 3 p. 1. CS Homework 3 Spring 2018 - CS 111 - Homework 3 p. 1 Deadline 11:59 pm on Friday, February 9, 2018 Purpose CS 111 - Homework 3 To try out another testing function, check-within, to get more practice using the design

More information

Adding Titles, and Voice-Overs to an Animation Using imovie HD Duncan Whitehurst - ICT Advisory Teacher Pembrokeshire County Council

Adding Titles, and Voice-Overs to an Animation Using imovie HD Duncan Whitehurst - ICT Advisory Teacher Pembrokeshire County Council 1. Your animation opens in imovie. 2. To add a title select the Editing view then click Titles. Choose a text colour here. Choose a font here. Move these sliders to change the speed of the animation and

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

Printing Envelopes in Microsoft Word

Printing Envelopes in Microsoft Word Printing Envelopes in Microsoft Word P 730 / 1 Stop Addressing Envelopes by Hand Let Word Print Them for You! One of the most common uses of Microsoft Word is for writing letters. With very little effort

More information

Create Reflections with Images

Create Reflections with Images Create Reflections with Images Adding reflections to your images can spice up your presentation add zest to your message. Plus, it s quite nice to look at too So, how will it look? Here s an example You

More information

Boise State University. Getting To Know FrontPage 2000: A Tutorial

Boise State University. Getting To Know FrontPage 2000: A Tutorial Boise State University Getting To Know FrontPage 2000: A Tutorial Writers: Kevin Gibb, Megan Laub, and Gayle Sieckert December 19, 2001 Table of Contents Table of Contents...2 Getting To Know FrontPage

More information

Name: Date: Multimedia Graphics and Web Publishing Mr. Dietzler. Flash Topics TWEENING AND MOTION GUIDES

Name: Date: Multimedia Graphics and Web Publishing Mr. Dietzler. Flash Topics TWEENING AND MOTION GUIDES Name: Date: Multimedia Graphics and Web Publishing Mr. Dietzler Flash Topics TWEENING AND MOTION GUIDES TWEENING: Motion Tweening: The most basic type of tweening is Motion Tweening in which you specify

More information

Digital Story Telling with Windows Movie Maker

Digital Story Telling with Windows Movie Maker Digital Story Telling with Windows Movie Maker 1 Getting Started 1. To open Windows moviemaker, go to: Start > All Programs > Windows Movie Maker. (Figure 1.1) Figure 1.1 Please note: You should have your

More information

Introduction to Java Unit 1. Using BlueJ to Write Programs

Introduction to Java Unit 1. Using BlueJ to Write Programs Introduction to Java Unit 1. Using BlueJ to Write Programs 1. Open up BlueJ. Click on the Project menu and select New Project. You should see the window on the right. Navigate to wherever you plan to save

More information

General Directions for Creating a Program with Flash

General Directions for Creating a Program with Flash General Directions for Creating a Program with Flash These directions are meant to serve as a starting point for a project in Flash. With them, you will create four screens or sections: 1) Title screen;

More information

Moving Materials from Blackboard to Moodle

Moving Materials from Blackboard to Moodle Moving Materials from Blackboard to Moodle Blackboard and Moodle organize course material somewhat differently and the conversion process can be a little messy (but worth it). Because of this, we ve gathered

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

More information

Touring the Mac. S e s s i o n 3 : U S E A N APPLICATION

Touring the Mac. S e s s i o n 3 : U S E A N APPLICATION Touring the Mac S e s s i o n 3 : U S E A N APPLICATION Touring_the_Mac_Session-3_Jan-25-2011 1 This session covers opening an application and typing a document using the TextEdit application which is

More information

AP Computer Science Unit 1. Writing Programs Using BlueJ

AP Computer Science Unit 1. Writing Programs Using BlueJ AP Computer Science Unit 1. Writing Programs Using BlueJ 1. Open up BlueJ. Click on the Project menu and select New Project. You should see the window on the right. Navigate to wherever you plan to save

More information

2. This tutorial will teach you the basics of PowerPoint and how to hyperlink and embed (insert) videos into your PowerPoint.

2. This tutorial will teach you the basics of PowerPoint and how to hyperlink and embed (insert) videos into your PowerPoint. 37 Creating Your Own PowerPoint for Macintosh and PC Computers and unitedstreaming Video Clips Tutorial created using PowerPoint 2000. This tutorial will work with similar images, messages, and navigation

More information

Microsoft Excel XP. Intermediate

Microsoft Excel XP. Intermediate Microsoft Excel XP Intermediate Jonathan Thomas March 2006 Contents Lesson 1: Headers and Footers...1 Lesson 2: Inserting, Viewing and Deleting Cell Comments...2 Options...2 Lesson 3: Printing Comments...3

More information

Responding to Events. In this chapter, you ll learn how to write code that executes in response. Understanding Event Types 65

Responding to Events. In this chapter, you ll learn how to write code that executes in response. Understanding Event Types 65 4 Responding to Events Understanding Event Types 65 Using a Listener to Catch an Event 66 Writing Event Handlers 68 Responding to Mouse Events 73 In this chapter, you ll learn how to write code that executes

More information

EDIT202 PowerPoint Lab Assignment Guidelines

EDIT202 PowerPoint Lab Assignment Guidelines EDIT202 PowerPoint Lab Assignment Guidelines 1. Create a folder named LABSEC-CCID-PowerPoint. 2. Download the PowerPoint-Sample.avi video file from the course WebCT site and save it into your newly created

More information

HYPERSTUDIO TOOLS. THE GRAPHIC TOOL Use this tool to select graphics to edit. SPRAY PAINT CAN Scatter lots of tiny dots with this tool.

HYPERSTUDIO TOOLS. THE GRAPHIC TOOL Use this tool to select graphics to edit. SPRAY PAINT CAN Scatter lots of tiny dots with this tool. THE BROWSE TOOL Us it to go through the stack and click on buttons THE BUTTON TOOL Use this tool to select buttons to edit.. RECTANGLE TOOL This tool lets you capture a rectangular area to copy, cut, move,

More information

Getting classlists and Sending to students

Getting classlists and Sending  to students Getting classlists and Sending email to students Table of Contents Getting classlists and Sending email to students... 0 Using the Classlist Student Email listing... 2 Deciding on your next step... 3 GroupWise

More information

Digital Story Telling with Windows Movie Maker Advanced STM Workshop Delwar Sayeed Center for Teaching and Learning

Digital Story Telling with Windows Movie Maker Advanced STM Workshop Delwar Sayeed Center for Teaching and Learning Digital Story Telling with Windows Movie Maker Advanced STM Workshop Delwar Sayeed Center for Teaching and Learning Getting Started 1. To open Windows moviemaker, go to: Start > All Programs > Windows

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

COMP : Practical 9 ActionScript: Text and Input

COMP : Practical 9 ActionScript: Text and Input COMP126-2006: Practical 9 ActionScript: Text and Input This practical exercise includes two separate parts. The first is about text ; looking at the different kinds of text field that Flash supports: static,

More information

Lesson 1 New Presentation

Lesson 1 New Presentation Powerpoint Lesson 1 New Presentation 1. When PowerPoint first opens, there are four choices on how to create a new presentation. You can select AutoContent wizard, Template, Blank presentation or Open

More information

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu USING DRUPAL Hampshire College Website Editors Guide 2014 https://drupal.hampshire.edu Asha Kinney Hampshire College Information Technology - 2014 HOW TO GET HELP Your best bet is ALWAYS going to be to

More information

Advanced PowerPoint Skills

Advanced PowerPoint Skills Table of Contents Advanced PowerPoint Skills 1 Applying the Dim Feature... 2 Adding Sound... 5 Adding Video... 7 Hyperlinks... 8 Linking to a place in the same document... 8 Linking to a different document...

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

Introduction to Flash - Creating a Motion Tween

Introduction to Flash - Creating a Motion Tween Introduction to Flash - Creating a Motion Tween This tutorial will show you how to create basic motion with Flash, referred to as a motion tween. Download the files to see working examples or start by

More information

COMP : Practical 6 Buttons and First Script Instructions

COMP : Practical 6 Buttons and First Script Instructions COMP126-2006: Practical 6 Buttons and First Script Instructions In Flash, we are able to create movies. However, the Flash idea of movie is not quite the usual one. A normal movie is (technically) a series

More information

Gratitude Journal Presented by

Gratitude Journal Presented by www.gettingunstuckllc.com 1 Presented by Getting Unstuck, LLC http://www.gettingunstuckllc.com User Manual Introduction Welcome to The! We all know how important gratitude is in our lives. Without gratitude

More information

Interactive Powerpoint. Jessica Stenzel Hunter Singleton

Interactive Powerpoint. Jessica Stenzel Hunter Singleton Interactive Powerpoint Jessica Stenzel Hunter Singleton Table of Contents iii Table of Contents Table of Contents... iii Introduction... 1 Basics of Powerpoint... 3 How to Insert Shapes... 3 How to Insert

More information

TASC CONFERENCES & TRAINING EVENTS

TASC CONFERENCES & TRAINING EVENTS TASC is sponsored by the Administration on Developmental Disabilities (ADD), the Center for Mental Health Services (CMHS), the Rehabilitation Services Administration (RSA), the Social Security Administration

More information

Microsoft POWERPOINT Training. IT ESSENTIALS Producing Effective PowerPoint 2013 Presentations (IS763) October 2015

Microsoft POWERPOINT Training. IT ESSENTIALS Producing Effective PowerPoint 2013 Presentations (IS763) October 2015 Microsoft POWERPOINT Training IT ESSENTIALS Producing Effective PowerPoint 0 (IS) October 0 Book online at: Royalholloway.ac.uk/it/training Self-Study packs also available th October 0 Table of Contents

More information

Blu Ray Burning in MZ280 Step 1 - Set Toast up to burn a Blu-ray Video Disc.

Blu Ray Burning in MZ280 Step 1 - Set Toast up to burn a Blu-ray Video Disc. Blu Ray Burning in MZ280 Step 1 - Set Toast up to burn a Blu-ray Video Disc. Open Toast. On the main screen, click the Video button in the upper-left portion of the screen, and select Blu-ray Video from

More information

Kindle Formatting Guide

Kindle Formatting Guide Kindle Formatting Guide Contents Introduction... 2 How about doing your own formatting?... 2 About the Kindle Format... 2 What file formats can you submit to Kindle?... 2 Stage 1 Format Your Headings...

More information

Honors Computer Science Python Mr. Clausen Program 7A, 7B

Honors Computer Science Python Mr. Clausen Program 7A, 7B Honors Computer Science Python Mr. Clausen Program 7A, 7B PROGRAM 7A Turtle Graphics Animation (100 points) Here is the overview of the program. Use functions to draw a minimum of two background scenes.

More information

Flash offers a way to simplify your work, using symbols. A symbol can be

Flash offers a way to simplify your work, using symbols. A symbol can be Chapter 7 Heavy Symbolism In This Chapter Exploring types of symbols Making symbols Creating instances Flash offers a way to simplify your work, using symbols. A symbol can be any object or combination

More information

Microsoft PowerPoint Presentations

Microsoft PowerPoint Presentations Microsoft PowerPoint Presentations In this exercise, you will create a presentation about yourself. You will show your presentation to the class. As you type your information, think about what you will

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

More information

TASC CONFERENCES & TRAINING EVENTS

TASC CONFERENCES & TRAINING EVENTS TASC is sponsored by the Administration on Developmental Disabilities (ADD), the Center for Mental Health Services (CMHS), the Rehabilitation Services Administration (RSA), the Social Security Administration

More information

Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019

Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019 Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019 Before starting these instructions, you should already have your Voice assistant installed and working. These instructions can be used

More information

An Animated Scene. Pick a color for the street. Then use the Paint can to fill the lower part of the page with grass.

An Animated Scene. Pick a color for the street. Then use the Paint can to fill the lower part of the page with grass. An Animated Scene In this project, you create a simple animated scene with graphics, a bit of text, a simple animation and some music. Click on the Steps below and be creative! Remember: if you must leave

More information

Windows Movie Maker Instructions

Windows Movie Maker Instructions Windows Movie Maker Instructions A. Getting Started: 1. To open Windows moviemaker, go to: Start > All Programs > Accessories > Windows Movie Maker. 2. Go to File > New Project. Please note: You should

More information

Introduction to SPSS

Introduction to SPSS Introduction to SPSS Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data file and calculate

More information

GSAK (Geocaching Swiss Army Knife) GEOCACHING SOFTWARE ADVANCED KLASS GSAK by C3GPS & Major134

GSAK (Geocaching Swiss Army Knife) GEOCACHING SOFTWARE ADVANCED KLASS GSAK by C3GPS & Major134 GSAK (Geocaching Swiss Army Knife) GEOCACHING SOFTWARE ADVANCED KLASS GSAK - 102 by C3GPS & Major134 Table of Contents About this Document... iii Class Materials... iv 1.0 Locations...1 1.1 Adding Locations...

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 22.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

EDIT202 PowerPoint Lab Assignment Guidelines

EDIT202 PowerPoint Lab Assignment Guidelines EDIT202 PowerPoint Lab Assignment Guidelines 1. Create a folder named LABSEC-CCID-PowerPoint. 2. Download the PowerPoint-Sample.avi video file from the course WebCT site and save it into your newly created

More information

AP Computer Science Unit 1. Writing Programs Using BlueJ

AP Computer Science Unit 1. Writing Programs Using BlueJ AP Computer Science Unit 1. Writing Programs Using BlueJ 1. Open up BlueJ. Click on the Project menu and select New Project. You should see the window on the right. Navigate to wherever you plan to save

More information

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3 Quick Start Guide - Contents Opening Word... 1 Locating Big Lottery Fund Templates... 2 The Word 2013 Screen... 3 Things You Might Be Looking For... 4 What s New On The Ribbon... 5 The Quick Access Toolbar...

More information

Importing source database objects from a database

Importing source database objects from a database Importing source database objects from a database We are now at the point where we can finally import our source database objects, source database objects. We ll walk through the process of importing from

More information

Valuable points from Lesson 6 Adobe Flash CS5 Professional Classroom in a Book

Valuable points from Lesson 6 Adobe Flash CS5 Professional Classroom in a Book Valuable points from Lesson 6 Adobe Flash CS5 Professional Classroom in a Book You are expected to understand and know how to use/do each of these tasks in Flash CS5, unless otherwise noted below. If you

More information

Adobe Premiere Elements Tutorial

Adobe Premiere Elements Tutorial Adobe Premiere Elements Tutorial Starting a New Project To import movie clips from a digital video camera, click on the Capture Video button. You will be prompted to name your project and choose a location

More information

My First iphone App. 1. Tutorial Overview

My First iphone App. 1. Tutorial Overview My First iphone App 1. Tutorial Overview In this tutorial, you re going to create a very simple application on the iphone or ipod Touch. It has a text field, a label, and a button. You can type your name

More information

Flowcharts for Picaxe BASIC

Flowcharts for Picaxe BASIC Flowcharts for Picaxe BASIC Tech Studies Page 1 of 11 In the college you will use the PICAXE Programming Environment in order to carry out all of your program writing, simulating and downloading to the

More information

Using Glogster.com/EDU

Using Glogster.com/EDU Using Glogster.com/EDU A Glog is like a poster, only better. Glogs allow you to create an online poster using photographs, images, graphics, video files and sound files. Glogs allow you to add hyperlinks

More information

Grade Point Scales Standard Honors AP/College A B C D F Sample file

Grade Point Scales Standard Honors AP/College A B C D F Sample file 64 Transcripts Weighted Cumulative GPA When your student works extra hard and takes honors or college courses, they deserve a little credit. The best way to reflect this is through their GPA. They deserve

More information

TOPIC 2 INTRODUCTION TO JAVA AND DR JAVA

TOPIC 2 INTRODUCTION TO JAVA AND DR JAVA 1 TOPIC 2 INTRODUCTION TO JAVA AND DR JAVA Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach by M. Guzdial and B. Ericson, and instructor materials prepared

More information

PUBLISHING FLASH. Lesson Overview

PUBLISHING FLASH. Lesson Overview PUBLISHING FLASH Lesson Overview In this lesson, you ll learn how to do the following: Test a Flash document Understand the Bandwidth Profiler Change publish settings for a document Understand the difference

More information

Introduction. Headers and Footers. Word 2010 Working with Headers and Footers. To Insert a Header or Footer: Page 1

Introduction. Headers and Footers. Word 2010 Working with Headers and Footers. To Insert a Header or Footer: Page 1 Word 2010 Working with Headers and Footers Introduction Page 1 You can make your document look professional and polished by utilizing the header and footer sections. The header is a section of the document

More information

Introduction to Modeling with Simile

Introduction to Modeling with Simile Introduction to Modeling with Simile This is an introduction to using Simile for building and analysing a model. Simile is a visual modeling tool. It allows you to draw a conceptual model diagram, and

More information

My First Cocoa Program

My First Cocoa Program My First Cocoa Program 1. Tutorial Overview In this tutorial, you re going to create a very simple Cocoa application for the Mac. Unlike a line-command program, a Cocoa program uses a graphical window

More information

The Fundamentals. Document Basics

The Fundamentals. Document Basics 3 The Fundamentals Opening a Program... 3 Similarities in All Programs... 3 It's On Now What?...4 Making things easier to see.. 4 Adjusting Text Size.....4 My Computer. 4 Control Panel... 5 Accessibility

More information

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

Mach4 CNC Controller Screen Editing Guide Version 1.0

Mach4 CNC Controller Screen Editing Guide Version 1.0 Mach4 CNC Controller Screen Editing Guide Version 1.0 1 Copyright 2014 Newfangled Solutions, Artsoft USA, All Rights Reserved The following are registered trademarks of Microsoft Corporation: Microsoft,

More information

Number Systems Using and Converting Between Decimal, Binary, Octal and Hexadecimal Number Systems

Number Systems Using and Converting Between Decimal, Binary, Octal and Hexadecimal Number Systems Number Systems Using and Converting Between Decimal, Binary, Octal and Hexadecimal Number Systems In everyday life, we humans most often count using decimal or base-10 numbers. In computer science, it

More information

Chapter 4 Devices. About devices. Planning your devices

Chapter 4 Devices. About devices. Planning your devices Chapter 4 Devices A device is the name HCA gives to real world items like a switch or module that it can control. First you create the device in HCA using the New Device Wizard. When you create the device

More information

3Using and Writing. Functions. Understanding Functions 41. In this chapter, I ll explain what functions are and how to use them.

3Using and Writing. Functions. Understanding Functions 41. In this chapter, I ll explain what functions are and how to use them. 3Using and Writing Functions Understanding Functions 41 Using Methods 42 Writing Custom Functions 46 Understanding Modular Functions 49 Making a Function Modular 50 Making a Function Return a Value 59

More information

Working with Track Changes: A Guide

Working with Track Changes: A Guide Working with Track Changes: A Guide Prepared by Chris Cameron & Lesley-Anne Longo The Editing Company Working with Track Changes: A Guide While many people may think of editors hunched over their desks,

More information

Notes 3: Actionscript to control symbol locations

Notes 3: Actionscript to control symbol locations Notes 3: Actionscript to control symbol locations Okay, you now know enough actionscript to shoot yourself in the foot, especially if you don t use types. REMEMBER to always declare vars and specify data

More information

A Quick Trick for Hiding Duplicate Excel Values

A Quick Trick for Hiding Duplicate Excel Values By Susan Harkins Duplicate values aren t wrong, but you might not want to display them. Use this simple technique to hide duplicate values in Excel. Duplicate values aren t wrong or bad, but they can be

More information

Making a maze with Scratch

Making a maze with Scratch Making a maze with Scratch Can you make it to the end? Student guide An activity by the Australian Computing Academy Let s go! Step 0: Get started Go to www.scratch.mit.edu Sign in with the username and

More information

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

More information

Part 1. Module 3 MODULE OVERVIEW. Microsoft Office Suite Pt 3. Objectives. MS PowerPoint Screen. Microsoft PowerPoint

Part 1. Module 3 MODULE OVERVIEW. Microsoft Office Suite Pt 3. Objectives. MS PowerPoint Screen. Microsoft PowerPoint Module 3 Microsoft Office Suite Pt 3 Microsoft PowerPoint MODULE OVERVIEW Part 1 Overview MS PowerPoint Screen Part 2 Creating your PowerPoint Presentation Part 3 Working with content graphics & slides

More information

CS 051 Homework Laboratory #2

CS 051 Homework Laboratory #2 CS 051 Homework Laboratory #2 Dirty Laundry Objective: To gain experience using conditionals. The Scenario. One thing many students have to figure out for the first time when they come to college is how

More information

Templates and Forms A Complete Overview for Connect Users

Templates and Forms A Complete Overview for Connect Users Templates and Forms A Complete Overview for Connect Users Chapter 1: Introduction... 3 Chapter 2: Microsoft Online Templates... 3 Word Templates... 3 Template Details... 4 Create a Template... 4 Update

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

Chapter 2 The SAS Environment

Chapter 2 The SAS Environment Chapter 2 The SAS Environment Abstract In this chapter, we begin to become familiar with the basic SAS working environment. We introduce the basic 3-screen layout, how to navigate the SAS Explorer window,

More information

Using Mail Merge in Microsoft Word XP/2002

Using Mail Merge in Microsoft Word XP/2002 Using Mail Merge in Microsoft Word XP/2002 Open Microsoft Word XP/2002 Beginning the Merge You may start Mail Merge with a blank document or one that you have already created. We will use a blank document

More information

Animation Part 2: Using Windows Movie Maker for Voiceovers and More Duncan Whitehurst ICT Advisory Teacher Pembrokeshire County Council

Animation Part 2: Using Windows Movie Maker for Voiceovers and More Duncan Whitehurst ICT Advisory Teacher Pembrokeshire County Council 1. To edit an animation produced in I Can Animate click Start, All Programs and find Windows Movie Maker. 2. In the Movie Tasks pane click Import Video. 3. Go looking on your computer for your animation.

More information

Teaching with Primary Sources

Teaching with Primary Sources Teaching with Primary Sources Joining Educators and Students with Library of Congress Resources Creating a Presentation with PowerPoint 2007 Benefits of using PowerPoint in lectures: PowerPoint encourages

More information

You can also search online templates which can be picked based on background themes or based on content needs. Page eleven will explain more.

You can also search online templates which can be picked based on background themes or based on content needs. Page eleven will explain more. Microsoft PowerPoint 2016 Part 1: The Basics Opening PowerPoint Double click on the PowerPoint icon on the desktop. When you first open PowerPoint you will see a list of new presentation themes. You can

More information

Designing Your Teacher Page. Medora Community School Corporation

Designing Your Teacher Page. Medora Community School Corporation Designing Your Teacher Page Medora Community School Corporation Introduction This tutorial will show you the basics of creating and running your teacher page on the Medora Community Schools website. This

More information

Windows Movie Maker lets you edit videos from video and photo files. It is free from Microsoft.

Windows Movie Maker lets you edit videos from video and photo files. It is free from Microsoft. Getting Started with Windows Movie Maker Windows Movie Maker lets you edit videos from video and photo files. It is free from Microsoft. Start a project To start, you will need to import photos or video

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 21.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

5. Excel Fundamentals

5. Excel Fundamentals 5. Excel Fundamentals Excel is a software product that falls into the general category of spreadsheets. Excel is one of several spreadsheet products that you can run on your PC. Others include 1-2-3 and

More information

SGUL VPN Connection Guide for Windows 7

SGUL VPN Connection Guide for Windows 7 SGUL VPN Connection Guide for Windows 7 2013-11-25 Draft version 2013-11-26 Version 1.0 Regulations Before connecting to the network, you should familiarize yourself with the regulations for computing

More information

PREMIERE. Introduction to Adobe Premiere

PREMIERE. Introduction to Adobe Premiere PREMIERE You will; 1. View some of Premiere s Tools. 2. Learn about Editing. 3. Learn about Workflow. 4. Learn about Rough Cutting. 5. Learn about Ripple & Rolling Edits. 6. Learn about the Trim Window.

More information

Burning CDs in Windows XP

Burning CDs in Windows XP B 770 / 1 Make CD Burning a Breeze with Windows XP's Built-in Tools If your PC is equipped with a rewritable CD drive you ve almost certainly got some specialised software for copying files to CDs. If

More information

Getting Up and Running

Getting Up and Running Version 3.2.1 / February, 2011 2 SECTION 1. SYSTEM REQUIREMENTS Getting Up and Running To use VizZle, it s best to have the most current version of Adobe Flash Player. When you download VizZle, Adobe will

More information

CISC 181 Lab 2 (100 pts) Due: March 4 at midnight (This is a two-week lab)

CISC 181 Lab 2 (100 pts) Due: March 4 at midnight (This is a two-week lab) CISC 181 Lab 2 (100 pts) Due: March 4 at midnight (This is a two-week lab) This lab should be done individually. Labs are to be turned in via Sakai by midnight on Tuesday, March 4 (the midnight between

More information