Flash tutorials | Flash video | Flash actionscript | flash animation |macromedia flash | flash menu | flashconf.com flash design, flash web, flash video, flash software, flash menu, flash training, macromedia flash,flash animation,flash preloader

7Feb/100

Circular Dynamic Preloader Tutorial

Circular Dynamic Preloader Tutorial - Flash ActionScript 3.0 Website Content Loader

7Feb/100

Flash drop down menu tutorial in ActionScript 3

Understand how to construct your own drop down menus from scratch in Adobe Flash ActionScript 3.

7Feb/100

How to Use Effects in Flash CS4

This a tutorial for how to make a cartoonish boom effect in Flash CS4. This can be used for a lot of Flash animations/movies. The font used in the video is called 'Ravie'.

7Feb/100

How to Make a Wheel in Flash CS4

how to create a spinning wheel in Flash CS4. It's very easy, and shouldn't require any prior knowledge of Flash. It might be kind of confusing, because the first time I made the video my microphone was off. The second time, I was kind of annoyed I had to make it again, so I wasn't thinking straight.

7Feb/100

3D Tools in Flash CS4

A basic overview of some of the included 3D tools in Adobe Flash CS4.

7Feb/100

Beginner Text Animation in Flash CS4

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

7Feb/100

How to Make a Link in Flash CS4

This was a highly requested tutorial by many different people. I said I would do it in another video, and here it is.

ACTIONS:
instanceNameHere.addEventListener(MouseE vent.CLICK, mouseClick);
function mouseClick
{
var request = new URLRequest("link goes here");
navigateToURL(request,"_blank");
}