First time here? First time here? Newsletter Signup Newsletter
651326 Members and growing! | Flash Jobs
Search tutorials
Author: Jeff Edsell | Website: http://jeff.edsell.net/

Drifting, drifting

In Frames 1 and 2, add the following lines after the line defining magnify:

drift = (Math.random() * 4) - 2; 
spin = (Math.random() * 6) - 3;

Now go to Frame 4 and add the lines highlighted in red below:

flakeyfall = flakey._y;


if (flakeyfall <= fallheight) {
   flakey._y = flakey._y + step;
   flakey._x = flakey._x + drift;
   flakey._rotation = flakey._rotation + spin;
   gotoAndPlay(3);
 } else {
   gotoAndPlay(2);
 }

Now take a look. Adds quite a bit, doesn't it? We're using our random magnify number to define an amount of drift (up to 3 pixels left or right) and spin (up to 2 degrees clockwise or counterclockwise) to be applied with each step.

But occasionally flakes drift out of frame well before they reach bottom, and we don't get to see them. let's modify the if statement so that flakes that drift off to the sides get yanked back up to start again. (Change is in red.)

flakeyfall = flakey._y;
if ((flakeyfall <= fallheight) && (flakeydrift >= -35) && (flakeydrift <=  fallwidth+35)) {
   flakey._y = flakey._y + step;
   flakey._x = flakey._x + drift;
   flakey._rotation = flakey._rotation + spin;
   gotoAndPlay(3);
} else {
   gotoAndPlay(2);
}

Again, you could stop here. but there's one final touch we can add.

» Level Basic

Added: 2003-12-01
Rating: 8.93 Votes: 357
(10 being the highest)
» Author
Jeff Edsell is a Chicago-based designer who works for an ad agency.
» Download
Download the files used in this tutorial.
» Forums
More help? Search our boards for quick answers!

Comments

  • There are no comments yet. Be the first to comment!

  • You must have javascript enabled in order to post comments.

Leave a Comment
  • Your email address will not be published. All fields are required.
Featured Flash FLA
» Author: S.Saipriya
» Title: Flash Fire Effect
» Description: This tutorial explains about how to create Fire Effect in Flash of Actionscript 2.0.I hope this tutorial helps you!
Featured Sound Loops
Image for equalize

Audio Player

» Author: Aidan Crouzet-Pascal
» Title: Falling Star
» Description: This loop is a cool sounding, E minor loop.
Latest Font
» Author: Fábio FAFERS
» Description: I created this font for free use. Everyone can apply it in personal or business texts. Its free, but I want to be communicated in case of business use. Donations are accepted to keep the project of free fonts alive! Thank you all
Featured Sound Fx
Image for equalize

Audio Player

» Author: Brandan Paulin
» Description: Epic sounding loop with Brass, Percussion, Strings and Winds. This is actually part of a Loop Pack called the Coming where you can download the rest of the loops that go with it FREE from my website.