Using Buttons to Create a Simple Site Example: The Color Picker www

Slides:



Advertisements
Similar presentations
Introduction to Flash, Part 2: Graphics, Animation, Sound & Interactivity Janet Davis April 30, 2008 For audio call Toll Free and use.
Advertisements

Flash: Controlling Sound Presentation by Mindy McAdams.
CIS 205—Web Design & Development Flash Chapter 3 Appendix B on Creating Animations.
 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.
Kapi’olani Community College Art 258 Interface Programming II In-class Presentation Week 12A.
Kapi’olani Community College Adobe Flash 2 In-class Presentation Week 1.
Kapi’olani Community College Art 258 Interface Programming II In-class Presentation Week 11B.
1 Flash Actionscript Adding Interactive Actions. 2 ActionScript 3.0 ActionScript is the language you use to add interactivity to Flash applications, whether.
You will learn how to quickly edit a video using Window Movie Maker. This program is available on most computers in the TWU computer labs. The video files.
XP Tutorial 5 Buttons, Behaviors, and Sounds. XP New Perspectives on Macromedia Flash MX Buttons Interactive means that the user has some level.
AD 305 Electronic Visualization I : School of Art and Design : University of Illinois at Chicago : Spring 2007 Intro to Action Script 3 "The games of a.
Tutorial 7 Planning and Creating a Flash Web Site.
Creating Buttons – Lesson 71 Creating Buttons Lesson 7.
Adobe Flash CS3 Revealed Chapter 3 - WORKING WITH SYMBOLS AND INTERACTIVITY.
More Tips on Flash CSC361/661 Digital Media Spring 2007 Burg.
Introduction to Flash MX 2004: Action Scripting Lloyd Rieber.
INTRO TO ACTIONSCRIPT 3.0 The Bad News: Learning ActionScript is as Much Fun as Being Torn Apart By a Pack of Crazed Wombats. (And I say that in a loving.
Motion Tweening – Lesson 81 Motion Tweening Lesson 8.
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.
Review 2 – Adobe Flash Lab Manual
AD 206 Intermediate CG : School of Art and Design : University of Illinois at Chicago : Spring 2009 Intro to Action Script 3 "The games of a people reveal.
Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 13(a) This presentation © 2004, MacAvon Media Productions Design Principles.
XP Tutorial 7 Creating a Flash Web Site. XP New Perspectives on Macromedia Flash 82 Objectives Plan and create a Flash Web site Create a Flash template.
Computer Game Design ActionScript is… Object-oriented programming Everything you do in ActionScript does something to some object* Some objects.
Appendix A Becoming an Adobe Certified Associate.
Video in Macromedia Flash (Optional) – Lesson 121 Video in Macromedia Flash (Optional) Lesson 12.
CIS 205—Web Design & Development Flash Chapter 3 Appendix on Using Buttons.
INTRO TO ACTIONSCRIPT 3.0 The Bad News: Learning ActionScript is as Much Fun as Being Torn Apart By a Pack of Crazed Wombats. (And I say that in a loving.
Step 1: Click Flyers while in Microsoft Publisher.
Random Name Picker. Instructions 1.Either enter a list of new names or load a set previously saved names by clicking the load button. 2.Click start. Known.
ABC Picture Find Rachel Davis. Instructions Find something in the pictures that start with each letter of the alphabet. The items can be colors, body.
Intro to ActionScript CIS 126 Greg Shorts. What Is ActionScript? ActionScript is the scripting language Flash uses to control its movies and the objects.
3:00. 2:59 2:58 2:57 2:56 2:55 2:54 2:53 2:52.
Copyright © 2003 Pearson Education, Inc. Chapter 4 – Slide 1 by Michael Kay The Web Wizard’s Guide to Flash.
Hubble Sight/Insight: Color the Universe Activity 4: Cooking with Color.
Flash 1. Document Properties Set frame rate and dimensions of project Set frame rate and dimensions of project (default width=550 and height=400)
Flash Movie Story Board Title of Movie: Lucy’s Recipe Collection Storyline: To introduce Lucy’s Recipe Collection to audiences. Way of expression: Simple.
Kapi’olani Community College Art 258 Interface Programming II In-class Presentation Week 12B.
Macromedia Flash MX Design Professional And Interactivity WORKING WITH SYMBOLS.
Creating a Flash Web Site
ActionScript Basics 2016 (2.0 – 3.0)
Adding Buttons, Actions, and Sounds
Unit Lessons Work with actions
Top Fire Protection Services Ottawa available on Dubinskyconstruction
www 123 hp com setup hp com setup :
www 123 hp com setup 8710 Call Here:
www 123 hp com setup 4650 Printer Support Call:
www hp com setup Printer Support Call:
www 123 hp com setup hp com setup :
www 123 hp com setup 8710 Call Here:
www 123 hp com setup 4650 Printer Support Call:
www hp com setup Printer Support Call:
www 123 hp com setup hp com setup :
www 123 hp com setup 8710 Call Here:
www 123 hp com setup 4650 Printer Support Call:
www hp com setup Printer Support Call:
www hp com setup Printer Support Call:
www 123 hp com setup hp com setup :
www 123 hp com setup 4650 Printer Support Call:
Www hp com setup Printer Support Call:
www 123 hp com setup hp com setup :
www 123 hp com setup 4650 Printer Support Call:
www 123 hp com setup 8710 Call Here:
Kapi’olani Community College
Interface Programming 2 Week 1
المدخل إلى تكنولوجيا التعليم في ضوء الاتجاهات الحديثة
Kapi’olani Community College
Kapi’olani Community College
Kapi’olani Community College
Presentation transcript:

Using Buttons to Create a Simple Site Example: The Color Picker www Using Buttons to Create a Simple Site Example: The Color Picker www.julietdavis.com/flashtutorials/colorpicker_ActionScript3.fla www.julietdavis.com/flashtutorials/colorpicker_ActionScript3.swf Step-by-step Instructions www.julietdavis.com/flashtutorials/colorpicker.doc FlasH Site Setup J. DAVIS

Scripting Pane

“Script THIS” Name your instances FIRST (button instances and movie clip instances). stop(); red_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler1); function mouseDownHandler1(event:MouseEvent):void { gotoAndStop("red"); } green_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler2); function mouseDownHandler2(event:MouseEvent):void { gotoAndStop("green"); orange_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler3); function mouseDownHandler3(event:MouseEvent):void { gotoAndStop("orange");

Questions? Next: Step by Step Color Picker and How to change Color Picker Into your Final Project