Aim: How can we create a car, bike or truck with rotating wheels using ACTION SCRIPTING?

Slides:



Advertisements
Similar presentations
Dawn Pedersen Art Institute. Introduction Prior to Flash CS3, the movement of Illustrator and Photoshop documents into Flash was difficult. At that time,
Advertisements

Flash Raining Text. Open Project Create Project – Action Script 3 Select Text Tool Type in some text – From the Properties Menu – Choose Font, Font Size,
NumericStepper Component You can use the numeric stepper anywhere you want a user to select a numeric value. You can use the numeric stepper anywhere you.
Goal: to rotate a figure around a central point
Do Now:.
 2004 Prentice Hall, Inc. All rights reserved. Chapter 18 – Macromedia Flash MX 2004: Building an Interactive Game Outline 18.1 Introduction 18.2 Object-Oriented.
Create shape-tweened animation Create a mask effect Add sound Add scenes Create a slide show presentation Unit Lessons.
Flash Quizzes Quiz templates generate quizzes that use Flash Interaction Components.
1 Flash Actionscript Adding Interactive Actions. 2 ActionScript 3.0 ActionScript is the language you use to add interactivity to Flash applications, whether.
Creating Flash Buttons Button Making Rollover Effects Enlarging the Clickable Area Giving Buttons Behaviors Behavior Options.
© 2010 Delmar, Cengage Learning Chapter 4: Creating Animation.
Roentgen photo effect. This detailed, thoroughly explained lesson will show you how to create very attractive roentgen photo effect. You can use this.
CIS 205—Web Design & Development Flash Chapter 4 Creating Animations.
SHAPE TWEEN BIKE 2 1. Type the word BIKE (in caps) Your choice of font and color Font size: 94 Ctrl-B 2. Drag a frame around the whole word BIKE (Each.
Chapter 3 Working with Symbols and Interactivity.
Introduction to Flash FYS100 Creative Discovery in Digital Art Forms Spring 2007 Burg.
Clock Math Clockwise and Counter Clockwise. Practice 1.
Clock Math Clockwise and Counter Clockwise. Practice 1.
Chapter 4 Creating Animations.
© 2011 Delmar, Cengage Learning Chapter 3 Working with Symbols and Interactivity.
Copyright © 2003 Pearson Education, Inc. Chapter 3, Slide 1 by Michael Kay The Web Wizard’s Guide to Flash.
Working with Symbols and Interactivity
© 2010 Delmar, Cengage Learning Chapter 3: Working with Symbols and Interactivity.
Adobe Flash CS3 Revealed Chapter 3 - WORKING WITH SYMBOLS AND INTERACTIVITY.
Adobe Flash CS3 Revealed
More Tips on Flash CSC361/661 Digital Media Spring 2007 Burg.
Introduction to Flash MX 2004: Action Scripting Lloyd Rieber.
© 2011 Delmar, Cengage Learning Chapter 4 Creating Animations.
Chapter 4 Creating Animations. Chapter 4 Lessons 1.Create motion tween animations 2.Create classic tween animations 3.Create frame-by-frame animations.
Concept. Example 1 Draw an Angle in Standard Position A. Draw an angle with a measure of 210° in standard position. 210° = 180° + 30° Draw the terminal.
Adobe Flash CS4 – Illustrated Unit D: Creating Animation.
What is Action Script 1.It is a programming language used in Flash 2.It is a language derived from JavaScript 3.It is an interactive language to control.
Distributed Multimedia Programming Week – 4A Buttons Movie Clips.
Working with Movie Clips – Lesson 61 Working with Movie Clips Lesson 6.
Building the Events Components– Lesson 111 Building the Events Components Lesson 11.
Dm 11 - Flash Special Effects Special Effects CREATING.
Macromedia Flash MX 2004 – Design Professional Special Effects CREATING.
1 Flash Basics Exercise Guide Making Animated Text  1.1 Open Flash 5.0 working environment frame 1  1.2 Highlight frame 1 of the first layer Insert.
WORKING WITH SOUND & VIDEO CHAPTER 7 PART I. USING SOUNDS Mp3 & WAV files Drag the sound files from the Library panel onto Stage at different points along.
Macromedia Flash 8 Revealed WORKING WITH SYMBOLS AND INTERACTIVITY.
ROLLING FRICTION AND FLUID FRICTION PER 6. DEFINE ROLLING FRICTION ROLLING RESISTANCE, SOMETIMES CALLED ROLLING FRICTION OR ROLLING DRAG, IS THE FORCE.
1 Actionscript for Flash by Dr SC Li. 2 Understanding more about instances Symbolsgraphics buttons Movie clips Instances (without names) No interaction.
Distributed Multimedia Programming Week - 3 Shape Tweening Symbols and Instances.
Rotation Around a Point. A Rotation is… A rotation is a transformation that turns a figure around a fixed point called the center of rotation. A rotation.
Rotation Around a Point. A Rotation is… A rotation is a transformation that turns a figure around a fixed point called the center of rotation. A rotation.
Rotations Rotate 180° about point PRotate 90° clockwise about point P Example P P.
Rotation – A circular movement around a fixed point Rotation.
Flash Develop Rich Internet Content and Applications –Design motion graphics or build data-driven applications Flash Document = “.fla” filename extension.
Video in Macromedia Flash (Optional) – Lesson 121 Video in Macromedia Flash (Optional) Lesson 12.
XP Tutorial 3 Creating Animations. XP New Perspectives on Macromedia Flash MX Elements of Animation Layers are used to organize the content of.
CIS 205—Web Design & Development Flash Chapter 3 Working with Symbols and Interactivity.
To play, start slide show and click on circle Lesson 3 Lesson 3 Lesson 3 Lesson 4 Lesson Lesson 4.
Creating a movie clip.
Symmetry Rotation Reflection.
How to transform a shape with a rotation
How to Import Audio in Adobe Flash
זכויות האדם והאזרח אבנר כהן זמיר.
Translations Rotations Reflections Compositions 1 pt 1 pt 1 pt 1 pt
Chapter Lessons Create shape-tweened animations Create a mask effect
Working with Symbols and Interactivity
Develop Rich Internet Content and Applications
Rotate clockwise 900. Rotate clockwise 900 Rotate this shape clockwise 90 0 about the point c.
Properties or Rules of Transformations
Can you put the symbols in?
Let Flash do Guessing at Animation for you.
MovieCLip Instances & ActionScript
Transformations Review
Note Pages 7 – 10.
Transformations: Describing rotations
Rotations.
Presentation transcript:

Aim: How can we create a car, bike or truck with rotating wheels using ACTION SCRIPTING?

Design your car, truck or bike on paper.

Opening Flash, create the main design, without the wheels.

Go to Insert/New Symbol.

Name the symbol and make a MOVIE CLIP.

Design your Tires within your MOVIE CLIP Symbol.

Go to Back to the Stage and bring up your LIBRARY.

Drag the MOVIE CLIP of your tire onto the Stage.

Modify/Transform/Free Transform and put your tire in place.

Go to Window ACTIONS with your tire selected and paste in the following script. (available on our Learning Portal.) onClipEvent(enterFrame){_rotation += 2; // 2 or desired speed in degrees of rotation per frame}

The + sets CLOCKWISE or COUNTER CLOCKWISE. The 2 sets the speed, which can be increased. onClipEvent(enterFrame){_rotation += 2; // 2 or desired speed in degrees of rotation per frame}