Creating a Shake Effect
February 6, 2009 by: smonteIn this tutorial, I’ll show you how you can create a shake effect. All this is done via ActionScript 3.0 of course. So start your Flash and let’s get started.
Setting up the environment
1. Create a new Flash ActionScript 3.0 document of size 300×300.
2. Draw a rectangle on the stage.
3. Convert the rectangle into a movie clip (name doesn’t matter, registration point in the center).
4. Linkage the rectangle movie clip to a class named “Rectangle”.
5. Remove the rectangle from the stage. We’ll be adding all of the rectangles to the stage via ActionScript 3.0.
Moving into ActionScript 3.0
Type the following in the first frame of your movie.
//This array will hold all the rectangles on the stage var rectangles:Array = new Array(); //In this loop, we'll create 20 rectangles for (var i = 0; i < 20; i++) { //Create one rectangle var rectangle:Rectangle = new Rectangle(); //Assign a random scale for the rectangle (scaleX and scaleY are the same) rectangle.scaleX = Math.random(); rectangle.scaleY = rectangle.scaleX; //Assign a random position rectangle.x = Math.random() * stage.stageWidth; rectangle.y = Math.random() * stage.stageHeight; //Add the rectangle on to the stage addChild (rectangle); //Add the rectangle to the array rectangles.push (rectangle); } //The timer will call the "shakeRectangles" function every 0.02 seconds var timer:Timer = new Timer(20, 100000000); timer.addEventListener (TimerEvent.TIMER, shakeRectangles); timer.start (); //This function is responsible for animating the shake function shakeRectangles (e:Event):void { //Loop through the array for (var i = 0; i < 20; i++) { //Rotate the rectangle a random amount (from -4 to 4) rectangles[i].rotation += Math.random() * 8 - 4; //Assign a new random position rectangles[i].x += Math.random() * 8 - 4; rectangles[i].y += Math.random() * 8 - 4; } }
That wasn’t hard at all, was it? Go ahead and play with this by changing the values and shapes. Hope you learned something new from this!
Related tutorials:
Comments
One Response to “Creating a Shake Effect”Leave a Reply
You must be logged in to post a comment.
Very helpful! Thanks!