Utah State Topics Movie Clips Using actionScript to control “other” timelines  Instance names  _root., _parent. (object hierarchy and dot syntax)

Slides:



Advertisements
Similar presentations
Macromedia Preview Arthur Yeo One Learning Place Pte Ltd.
Advertisements

Flash: Controlling Sound Presentation by Mindy McAdams.
© 2010 Delmar, Cengage Learning Chapter 9: Using ActionScript.
Utah State Movie Clips, Dot Syntax, Dynamic Text.
Flash Week 5 Presentation by Mindy McAdams. Post-mortem: Flash 3 exercise Sliding panel functionality Use of big, beautiful pictures (vs. tiny pictures)
Utah State Advanced Animation & Graphic Symbols. Utah State Topics Animation  Frame rate  Easement (review & demo)  Guide paths Symbols (focus on graphic)
Utah State Topics Bitmaps Symbols  Buttons ActionScripting.
B.Sc. Multimedia ComputingMultimedia Authoring Introduction to ActionScript.
Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.
Kapi’olani Community College Art 258 Interface Programming II In-class Presentation Week 5A.
Utah State Topics Drag and Drop Using if/else and nesting if/else blocks Dynamic Text Fields.
Utah State Topics Ink bottle Animation  Frame rate  Easement (review & demo)  Guide paths Symbols (focus on graphic)
1 Flash Actionscript Adding Interactive Actions. 2 ActionScript 3.0 ActionScript is the language you use to add interactivity to Flash applications, whether.
Utah State Topics Sound  Timeline  ActionScript  Sound Design for Instruction Video.
1 Flash Programming Introduction Script Assist. 2 Course Description This course concentrates on the teaching of Actionscript, the programming language.
Creating Animation Pertemuan Matakuliah: L0182 / Web & Animation Design Tahun: 2008.
© 2010 Delmar, Cengage Learning Chapter 4: Creating Animation.
AD 206 Intermediate CG : School of Art and Design : University of Illinois at Chicago : Spring 2009 Intro to Action Script 9 "The games of a people reveal.
MovieClips & Properties Flash ActionScript Introduction to Thomas Lövgren
© 2011 Delmar, Cengage Learning Chapter 8 Building Complex Animations.
1 © Netskills Quality Internet Training, University of Newcastle Flash 8: Animation Techniques © Netskills, Quality Internet Training, University of Newcastle.
Lesson 29: Multimedia with Flash 8 – ActionScript, Masks and Practical Uses.
Aim: How can we create a car, bike or truck with rotating wheels using ACTION SCRIPTING?
Flash II MIS439 Eva Tao March 19, 2007 Source:
Macromedia Flash By Alice Tian. Overview  What is Flash  Why Flash  Basic User Interfaces  Animation Basics  Advanced Basics  Publishing.
Copyright © 2003 Pearson Education, Inc. Chapter 3, Slide 1 by Michael Kay The Web Wizard’s Guide to Flash.
Getting a handle on ActionScript A basic primer for non-programmers.
Our Examples Video Capture Working With Interactive Video Objects Buttons symbols – are areas on the monitor that a sensitive to user actions such.
Supplementary Materials on Web Authoring. Insert Anchors & Add Hyperlinks Insert other multimedia elements: Flash animations Video clips & Audio clips.
More Tips on Flash CSC361/661 Digital Media Spring 2007 Burg.
Flash Week 4 Presentation by Mindy McAdams. Review of best practices The top layer in the main Timeline: Named “actions” and contains all “a” frames containing.
CSC 361/661 Digital Media Spring 2010 Professor Burg.
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.
ActionScript: Addressing Display Objects, Duplicating MovieClips, Attaching MovieClips Dynamically MMP 220 Multimedia Programming This material was prepared.
Agenda 1 - Sketchbook - DUE TODAY! 1 - Flash Environment and workspace continued - Nested or embedded Movie Clips (car animation) - - Bone tool.
Introduction to Flash. A Metaphor Definitions Stage is the rectangular area where you place graphic content, including vector art, text boxes, buttons,
Building the Events Components– Lesson 111 Building the Events Components Lesson 11.
Review 2 – Adobe Flash Lab Manual
Agenda Sketchbook DUE next Tues - assignment dates listed on next page 1 - Get out your sketchbook and note these terms: Symbols (reusable object):
ET710 HTML Paths: Dot Dot Slash Notation. Directory (folder) Hierarchy. We can think of a computer’s file structure as a tree with branches. The trunk.
1 Actionscript for Flash by Dr SC Li. 2 Understanding more about instances Symbolsgraphics buttons Movie clips Instances (without names) No interaction.
Flash ActionScript Introduction to Scope & Levels duplicateMovieClip & attachMovieClip.
What can we see in the sky?. IN THE SKY WE CAN SEE MUCH MORE!
SCRIPT PROGRAMMING WITH FLASH Introductory Level 1.
Appendix A Becoming an Adobe Certified Associate.
Video in Macromedia Flash (Optional) – Lesson 121 Video in Macromedia Flash (Optional) Lesson 12.
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.
Open a new Flash File Action Script 2.0. Create a button like you did last lesson and name it Click to Play.
Debugging tools in Flash CIS 126. Debugging Flash provides several tools for testing ActionScript in your SWF files. –The Debugger, lets you find errors.
Intro to ActionScript CIS 126 Greg Shorts. What Is ActionScript? ActionScript is the scripting language Flash uses to control its movies and the objects.
Copyright © 2003 Pearson Education, Inc. Chapter 4 – Slide 1 by Michael Kay The Web Wizard’s Guide to Flash.
Flash 1. Document Properties Set frame rate and dimensions of project Set frame rate and dimensions of project (default width=550 and height=400)
Macromedia Flash MX Design Professional And Interactivity WORKING WITH SYMBOLS.
CDM105 Session 12 Macromedia FLASH MX 2004 Part 5 : Sounds, publishing your movies, and the ‘Get URL’ action.
Sky Letters Grass Letters Root Letters.
To play, start slide show and click on circle Lesson 3 Lesson 3 Lesson 3 Lesson 4 Lesson Lesson 4.
ActionScript Basics 2016 (2.0 – 3.0)
Agenda Sketchbook > look at the links on website/calendar:
Unit Lessons Work with actions
Agenda 1 - Flash continued -
Agenda 1 - Practice Files > Must be checked off today
Agenda • Demos - Visual Transitions from one concept to the next
Know More About : Develop An App Like Uber Develop An App Like Uber.
Using Buttons to Create a Simple Site Example: The Color Picker www
Animate Some more advanced concepts
Interface Programming 2 Week 1
Kapi’olani Community College
MovieCLip Instances & ActionScript
Flash Demonstration – Unit 5 – ActionScript 3.0
Kapi’olani Community College
Presentation transcript:

Utah State Topics Movie Clips Using actionScript to control “other” timelines  Instance names  _root., _parent. (object hierarchy and dot syntax)

Utah State Movie clips Uber symbol Independent timelines Mini flash files Car example

Utah State ActionScript and Movie Clips Instance names “Pathing” to instances (not symbols):  _root.. (for absolute pathing) For example: _root.mushroom.stop();  _parent.. (for relative pathing) For example: _parent.sky.gotoAndStop(1);  this.. (current location in heirarchy) For example: faceFrame = this.face._currentframe; this. is not necessary, already implied

Utah State Instance names Different than symbol name Why?

Utah State Hierarchy example face

Utah State Another Hierarchy example From sky to mushroom:  _parent.mushroom From mushroom to sky:  _parent.sky sky mushroom