How to Create a Particle Effect in Flash

Most websites today somehow incorporate Flash into their design. Flash makes the complicated seem simple. One example of this design is the particle effect. In just minutes a user can have a artistic effect to use in web design projects with little effort. Read on to learn how to create a particle effect in Flash.

Instructions

    • 1

      Open a new document in Adobe Flash. Press "F9" on the keyboard and set the frame rate to 55 frames per second.

    • 2

      Pick the oval tool from left menu panel. Draw the oval in the open document. Turn off the color stroke option on the left menu panel.

    • 3

      Color the oval. Select the oval and press "Shift and F9." From the color panel change the type to "Radial." Make sure the stroke color option is turned off. There is trail and error here to get the correct color. Select the preferred color and move the slide color options until the desired color and look is achieved.

    • 4

      Click on the oval and press "F8." In the box select the "Movie Clip" option. The naming of the movie is up to the user. Choose "OK."

    • 5

      Make sure the oval is still selected. Then double click the oval to open the movie clip. With particle or oval still selected, choose "F8" from the keyboard. Change the symbol type to graphic and click "OK." Again the naming of the file is up the user.

    • 6

      Choose the first frame in the timeline menu. Then Press "F9" to access the script panel. Paste the following script inside the script panel:
      xMin = 0;
      xMax = 400;
      yMin = 0;
      yMax = 200;
      minSize = 15;
      maxSize = 50;
      easeFactor = 10;

      randomX = Math.random () * ( xMax - xMin ) + xMin;
      randomY = Math.random () * ( yMax - yMin ) + yMin;
      randomSize = Math.random () * ( maxSize - minSize ) + minSize;

    • 7

      Insert a frame. Choose the second frame from the timeline panel and press "F5."

    • 8

      Select the third frame from the timeline menu panel and press "F6" on the keyboard. Next press "F9" to open the script panel. In the script panel copy and paste the following text:
      distance = Math.sqrt(Math.pow(this._x-randomX, 4)+Math.pow(this._y-randomY, 4));

      if (Math.abs(this._width-maxSize)>2) {
      this._width += (randomSize-this._width)/4;
      this._height += (randomSize-this._height)/4;
      }

      if (distance>1) {
      this._x += (randomX-this._x)/easeFactor;
      this._y += (randomY-this._y)/easeFactor;
      gotoAndPlay(4);
      } else {
      gotoAndPlay(2);
      }

    • 9

      Repeat the above step to create more particle to enhance the effect. Be sure to save the file.

Related Searches:

Comments

You May Also Like

  • Flash 8 Fire Effect

    Fire effect is created using a particle fire effect in Macromedia flash. Multiple instances of this particle are then attached onto the...

  • Artbeats Particle Effects

    Artbeats Particle Effects. Artbeats is a company that provides royalty-free stock footage for use on the Internet or as jpeg print media....

  • After Effects 5 Particles Tutorials

    After Effects is known as a 2D animation program, but animators can greatly expand into the third dimension by using different effects...

  • Particle Animation Tutorial

    Particle animation is one of the coolest aspects of CGI animation. Using this process, 3-D animators can make rain on a sunny...

  • Text Effects in Flash 8

    Flash 8 Text Effects. "Flash 8" is a multimedia platform designed for use with Internet web pages. The platform adds interactivity, animation...

  • Flash Pro 8 Effects

    Flash Pro 8 Effects. Flash 8 Professional is an animation software package. You can use it to create animations, games and interactive...

  • After Effects Particle Tutorials

    Adobe After Effects is used to create an assortment of special effects to be applied to previously shot video footage. One of...

  • How to Make Particle Board

    Particle board is a composite material that's made by mixing wood particles with a resin or some other binder. It's cheaper and...

  • How to Make an Animated Flash Text Effects Online Generator

    When computer users hear the word "Flash," they may think of movies. "Movie" is the correct term because every Flash object is...

  • Fire Stage Effects

    Fire Stage Effects. For some stage performances, fires, or the appearance of fires, are needed. Whether the illusion is of campfires, wizards...

  • The Effect of Particle Board on Asthma

    Asthmatics have long heard warnings to avoid particle board, because particle board may trigger an asthma attack. The particle board itself is...

  • About Adobe After Effects CS3

    The CS3 package of Adobe products includes updated programs for Photoshop, Premiere and the animation program After Effects. After Effects CS3 is...

  • How to Prevent Flash Rust

    Flash rust is rust that appears quickly--literally overnight--and can occur on any surface including stainless steel. Generally, flash rust is a result...

  • How to Make Smoke Effect in Flash 8

    Flash videos are found throughout the Internet because they are designed to use very few computer and network resources. A Flash video...

  • 3D Studio Max Effects

    3D Studio Max Effects. 3D Studio Max, which is now called 3ds Max, is an application for designing 3D models and animations....

  • How to Create a Spinning Ring Effect in Macromedia Flash Pro

    A spinning ring is a great effect for beginning animators just trying your chops at Flash. It's simple and you can make...

Related Ads

Featured