Flash tutorials | Flash video tutorials | Flash actionscript | flash animation | flash menu | flashconf.com Flash tutorials, Flash video tutorials, Flash actionscript, flash animation , flash menu

7Feb/100

How to Add Interactivity to a Button Inside Adobe Flash CS4

short video tutorial on how to make a button "work" inside Adobe Flash CS4. It's a little different with the new ActionScript 3.0, so I decided I'd make a video on it. I'd also like to tell you that in ActionScript 3.0, all the actions are in the timeline, meaning you cannot give objects their own set of actions anymore.

Actions used in the video.

Give the object an instance name first, as shown.

Then, add an event listener like:
instanceNameHere.addEventListener(MouseE vent.CLICK,mouseClick);

Then, you have to define the function, mouseClick.
function mouseClick(event:MouseEvent):void
{
insert what you want to happen here
}

Possible actions:
You can go to another frame and play the video: gotoAndPlay(framenumber);

You can go to another frame and stop the video:
gotoAndStop(framenumber)

You can play the video:
play();

You can stop the video:
stop();

7Feb/100

How to Make a Simple Button Inside Adobe Flash CS4

30Dec/090

How to Export GIF flash files in Flash

You want to change a animation Wallpaper for your Mobile phone, the image of GIF format will fit you. And you have a lot of flash file, so you can export GIF Flash files in Flash. This article will show you how to export GIF Flash files.

Solution

  1. Open Adobe Flash CS4.
  2. Open a finished flash movie.
  3. Select "File" on the menu bar and choose "Export" then choose "Export movie..." to open export movie window.

    Export movie window
  4. Select "Animated GIF" format, the movie will export as a animation.
  5. Select "GIF Sequence" format, the movie will export as a picture. And all the frame of the Flash file will be exported.
    export file to GIF
  6. Now, you have finished exporting GIF flash files in Flash. You can enjoy your GIF format wallpaper.