Uncategorized

Adobe eSeminar: Architecting a Web Site in Flash CS3

Tuesday, October 16th, 2007 9:00 AM PDT So you’ve created Flash graphics but are unsure how to set up an entire site in Flash? In this session I will show you how to build a site in Flash using different methods, and the benefit of each. You’ll even be able to walk away with sample files to help get your site online in no time!

Read More

eSeminar: ActionScript 3.0 Animation

(roll your mouse over the image above). In this eSeminar I show how to do all your animation using ActionScript 3.  Why?  Well, some things just can’t be done in the timeline.  For instance, if you want a movieclip to follow the mouse.  Or you want to animate to an undefined location that’s not known until runtime (where the user clicks).  These are just some of the cases where you’d want to us ActionScript to […]

Read More

ActionScript 3.0 Animation – Example Site

View Example | Download Source Files This is an example site that was created to show different ActionScript animation techniques which include: Event model (ENTER_FRAME) Timer class Tween class TransitionManager class Dynamically create and animate multiple elements

Read More

ActionScript 3.0 – Using the Date Object

View Example |  Download Source Files Basically the Date object hasn’t changed in AS 3.0. In this example the skull moves once every second and when it reaches the end of the stage then a minute has passed.  the red overlay moves every minute, covering the screen in an hour. In general if you want to move movie clips based on the current time like this then this is the formula you’d use: var myTimer:Timer=new […]

Read More

ActionScript 3.0 – Draw Line

View File  |  Download Source Files  In AS 3.0, to draw a line that continually changes, add the following code in an ENTER_FRAME:     //remove graphic to remove previously drawn line each time container.graphics.clear(); //define line width in pixels container.graphics.lineStyle(15); //move the drawing pen.  Mace X and Y are dynamic positions container.graphics.moveTo(mace.x, mace.y); //draw lines from the start (above) to the mouse position container.graphics.lineTo(mouseX, mouseY); 

Read More

ActionScript 3.0 Rain – Randomly creating and moving movie clips

View Example | Download Source Files Creation There are a couple different ways to create multiple movie clips in AS 3.0 but this is the way I like best. Basically create an array and attach (addChild) the Rain library item to the stage. Place it at a random position within the stage width/height: var rainArray:Array = new Array(); for (var i:uint=0; ithis.stage.stageHeight){ rainArray[i].y = 0; rainArray[i].x = Math.round(Math.random() * this.stage.stageWidth); } } }

Read More

ActionScript Eyes – Watching the cursor

View Example  |  Download Source Files In this example, every 3 seconds about 15 eyes will randomly animate around your current cursor position. This is done using the tween class with a random variance. But what I want to talk about is how to get the eyeball to point to the cursor. Here’s the code that does that:  |     var dx:Number = mouseX – eye.x;    var dy:Number = mouseY – eye.y;    var radians:Number = […]

Read More

Flash Player Update Supports HD Video!

A very exciting new announcement from Adobe in the last couple weeks brought industry standard HD quality video to the Flash Player. Paired with the power and ubiquity of the Flash Player the new support for MPEG4 H.264 content will help revolutionize video on the web yet again. The new update also includes support for hardware acceleration and multi-threading support for enhanced video playback performance with full screen high resolution, smooth performance. The next generation […]

Read More

ActionScript 3.0 – Using the Date Object

Basically the Date object hasn’t changed in AS 3.0 but it’s still the most effective way to get and time items related to the date. In this example the skull moves once every second and when it reaches the end of the stage then a minute has passed.  the red overlay moves every minute, covering the screen in an hour. In general if you want to move movie clips based on the current time like […]

Read More

Favourite Website Awards

The FWA (Favourite Website Awards) See what’s hot with Flash so you can feel bad about how much your stuff sucks. That’s what I do! Cool desktop images as well.

Read More