Programatic Animation



Similar documents
Sizmek Formats. Collage. Build Guide

The In-Stream LogoKit is an In-Stream linear and non-linear ad format that plays in VPAID-compliant video players. The ad displays icons in the

Flash MX Image Animation

Motion tween is nothing but tweening a Symbol's movement from one position to another.

CS 4300 Computer Graphics. Prof. Harriet Fell Fall 2012 Lecture 33 November 26, 2012

MovieClip, Button, Graphic, Motion Tween, Classic Motion Tween, Shape Tween, Motion Guide, Masking, Bone Tool, 3D Tool

COURSE OUTLINE REVISED SPRING 2008

Encrypting*a*Windows*7*Hard*Disk* with%bitlocker%disk%encryption!

Flash Is Your Friend An introductory level guide for getting acquainted with Flash

Buffalonews.com & Canalside Media. Digital Ad Specifications. Last Updated: 7/23/14

Fireworks 3 Animation and Rollovers

Working With Animation: Introduction to Flash

Animation. Basic Concepts

Using WINK to create custom animated tutorials

Web and Interactive Media Design ms321 (2012/13) - Course Outline -

Great Basin College Spring Semester GRC 188 section 1001 Web Animation and Interactivity I

Adobe Certified Expert Program

THINKDIGITAL. ZOO Ad specifications

Flash MX 2004 Animation Lesson

JOURNAL OF OBJECT TECHNOLOGY

Mobile Multimedia Development: Flash Mobile Game with MySQL Database

IV. Student Performance Objectives: Upon successful completion of this course, the student will have met the following objectives:

Teaching Non-majors Computer Programming Using Games as Context and Flash ActionScript 3.0 as the Development Tools

Sizmek. Sizmek Formats. Custom Header. Build Guide. Copyright 2014 Sizmek. All rights reserved. 1

Technical Specifications Digital


Advanced Layer Popup Manual DMXzone Advanced Layer Popup Manual

Adobe Certified Expert Program

For General Advertising Information, call TABLE OF CONTENTS

Create a new file/canvas to work with by going to the file menu and selecting new.

Chapter 3: Animation. Creating Frames and Keyframes. After completing this module, you ll be able to:

elearning Journey Multimedia Courseware Design Proposal

Input and Interaction. Objectives

Adobe Certified Expert Program

on (release) { geturl (clicktag1, "_blank"); De tweede button action (enz..) on (release) { geturl (clicktag2, "_blank");

How To Use Mugeda Content

Put your message in front of the largest market for legal professionals in the south.

Installation Manual for Catalog Infinite Scroll extension

GRC 119 Assignment 6 Create a Flash Animation Banner Ad

Display. Creative Guidelines and Specifications

Polling Banner Known Issues Implementing the Block Configuring in Flash... 3 AS AS3... 8

THE ULTIMATE BEST PRACTICES

A Step-by-Step Guide to Setting Up clicktag Tracking in Flash Banner Ads

Bailey Testing Framework. An automated graphic based GUI testing framework for TDD process.

Introduction to Flash Animation

Advertising Spec Sheet

WAYNESBORO AREA SCHOOL DISTRICT CURRICULUM INTRODUCTION TO COMPUTER SCIENCE (June 2014)

Chapter 5 Multimedia Software

Android Development Introduction CS314

Outline. 1.! Development Platforms for Multimedia Programming!

DIGITAL ADVERTISING SPECS OVERVIEW 1-3 TAKEOVERS 4-5 RUN OF SITE 6 HTML NEWSLETTERS 7-8 ONLINE SPONSORSHIPS 9-10 ADDITIONAL AD UNITS 11-12

Ad Unit Dimensions / Ad sizes Max File Size GIF / JPEG Max File Size HTML 5 / Flash 40 KB 40 KB 40 KB 40 KB 40KB 40KB 40KB. 50KB *Premium ad formats

var prizetemp:number = Math.round(Math.random() * (Number(winNums.length-1) - 0)) +

Ad Placement Strategy

App Inventor Tutorial 4 Cat & Mouse Game

Flash Tutorial Part I

MediaCrossing Inc. Creative Specifications

CURRICULUM MAP. Web Design I Mr. Gault

Introduction... Learn to insert event sounds and streaming sounds and to change the effects for a sound... 69

Rate Card - Trade Me Tenancy*

Stage 1 Desired Results

DIGITAL ADVERTISING SPECS OVERVIEW 1-3 TAKEOVERS 4-5 RUN OF SITE/HOME PAGE TARGETING/ CONTEXTUALLY TARGETED IMPRESSIONS

Unity 6. Spotlight. LOCAL GOVERNMENT ASSOCIATION OF SA Unity (DCW Edition) Guide

Adobe Flash Lite 2.0 Mobile Developer Exam

Creating a Flash.swf animation

How to create a Flash banner advert in DrawPlus X2

client/agency digital ad kit

CURRICULUM MAP. Web Design II Mr. Gault

Using TFrame to create more advanced TJSEditDialogs in LMD DialogPack

Allworx Call Assistant Release Notes (Release 2.1.2)

Alison Cernich, Ph.D. Director, Neuropsychology VA Maryland Health Care System Assistant Professor, Neurology & Psychiatry University of Maryland

Keywords - animation, e-learning, high school, physics lesson

Sizmek Formats. Swell. Build Guide

Copyright 2014 Yahoo Japan Corporation. All Rights Reserved.

Within minutes you can transform your high-resolution digital image in to a DVquality movie that pans, zooms and rotates the once-still image.

Insert/Edit Link: Popup Tab

Intermediate Blackboard

The Performance Management Process How to establish goals, objectives and KPI s

Index. 2D arrays, 210

Web Page Design (Master)

ACCELERATOR BASED GAME PROGRAMMING ON ANDROID MOBILE PHONE

The Design of Multimedia Interactive Courseware Based on FLASH ZHU Xiaowei 1, a

Qualtrics Question API

Tutorial 13: Object Animation

Make Life Easier by Using Modern Features of the SPCM Software

Outline: Operating Systems

Flash Game Development by Example

Adobe Creative Suite: Introduction for Web Design

Advertising Rates 2015

Elliott Wave Rules and Guidelines Overview of AGET Time and Price Squares Tool page 1

The goal is to program the PLC and HMI to count with the following behaviors:

Creative Cloud for Web Design

Overview of the Adobe Flash Professional CS6 workspace

The Association for Internet Advertising (SPIR)

Off-Campus Employer JobX Training Guide

Outline. CIW Web Design Specialist. Course Content

ROSSEL ADVERTISING a. ROSSEL ADVERTISING last version : 11/2014 TECHNICAL SPECIFICATIONS

Solar-Generation Data Visualization Software Festa Operation Manual

Transcription:

Programatic Animation Intermediate ActionScript 3.0

Programatic Animation What is Animation? What is Programatic Animation? Interactive Animation Enterframe vs Timer /// make this still Conclusions

What is Animation?

an i mate - 1. To give spirit and support to 2. To give live to. 3. To move to action source: http://m-w.com

What is Programatic Animation?

Change Properties over time Programatic Animation-

Programatic Animation mc.x = 10 mc.x = 20 mc.x = 30 mc.x = 40 mc.x = 50 Frame 1 Frame 2 Frame 3 Frame 4 Frame 5 moves on the x

Programatic Animation Example import fl.transitions.tween; import fl.transitions.easing.*; var mytween:tween; mytween = new Tween(mc, "x",bounce.easeout, 0, 300, 3, true);

Programatic Animation Example import fl.transitions.tween; import fl.transitions.easing.*; var mytween:tween; mytween = new Tween(mc, "x",bounce.easeout, 0, 300, 3, true); Importing Tween Class

Programatic Animation Example import fl.transitions.tween; import fl.transitions.easing.*; var mytween:tween; mytween = new Tween(mc, "x",bounce.easeout, 0, 300, 3, true); Creating a Tween Object

Programatic Animation Example import fl.transitions.tween; import fl.transitions.easing.*; var mytween:tween; mytween = new Tween(mc, "x",bounce.easeout, 0, 300, 3, true); name of the MovieClip Object

Programatic Animation Example import fl.transitions.tween; import fl.transitions.easing.*; var mytween:tween; mytween = new Tween(mc, "x",bounce.easeout, 0, 300, 3, true); property

Programatic Animation Example import fl.transitions.tween; import fl.transitions.easing.*; var mytween:tween; mytween = new Tween(mc, "x",bounce.easeout, 0, 300, 3, true); Type of easing

Programatic Animation Example import fl.transitions.tween; import fl.transitions.easing.*; var mytween:tween; mytween = new Tween(mc, "x",bounce.easeout, 0, 300, 3, true); start and stop values

Programatic Animation Example import fl.transitions.tween; import fl.transitions.easing.*; var mytween:tween; mytween = new Tween(mc, "x",bounce.easeout, 0, 300, 3, true); number of seconds

Programatic Animation Example import fl.transitions.tween; import fl.transitions.easing.*; var mytween:tween; mytween = new Tween(mc, "x",bounce.easeout, 0, 300, 3, true); actual seconds or milliseconds

Interactive Animation

mc.addeventlistener(mouseevent.click, onclick); Interactive Animation function onclick(e:mouseevent){ mc.x+=20

mc.addeventlistener(mouseevent.click, onclick); Interactive Animation registering a click function onclick(e:mouseevent){ mc.x+=20; event on the MovieClip Object

mc.addeventlistener(mouseevent.click, onclick); Interactive Animation function onclick(e:mouseevent){ mc.x+=20 function to handle the click event

mc.addeventlistener(mouseevent.click, onclick); Interactive Animation function onclick(e:mouseevent){ mc.x+=20 The MovieClip object will move across the screen 10 pixels for every mouse click

Conclusions

Any property that can change is animate-able Conclusions Programatic Animation is the changing of properties over time Animation can be Event driven i.e. Mouse Click

Programatic Animation: Summary What is Animation? What is Programatic Animation Interactive Animation Conclusions