Top programming blogs award

Top programming blogs

google
yahoo
bing

New to School of Flash – Templates!

Site News 5 Comments »

Flash templates, HTML templates, WordPress themes, and much more are now available through School of Flash.

Don't have the time (or the expertise) to create your own website from scratch. Click here, or click on the "Templates" link in the main menu, to visit our new Templates section. Choose from thousands of professionally created website templates, including some AMAZING Flash templates.

3D Particle Effect – Flash CS4 Tutorial

Flash Tutorial 25 Comments »

In today's video tutorial, I'll show you how to create an ActionScript 3D particle effect that causes multiple stars to animate out in all directions in 3D space. Here is the ActionScript for this tutorial:

var container:MovieClip = new MovieClip();
addChild(container);
 
root.transform.perspectiveProjection.fieldOfView = 120;
 
addEventListener(Event.ENTER_FRAME, addStar);
 
function addStar(e:Event):void
{
	var mc:star = new star();
	mc.x = stage.stageWidth / 2;
	mc.y = stage.stageHeight / 2;
	mc.z = 0;
	mc.xVel = Math.random() * 4 - 2;
	mc.yVel = Math.random() * 4 - 2;
	mc.zVel = Math.random() * 4 - 2;
	mc.count = 0;
	container.addChild(mc);
	mc.addEventListener(Event.ENTER_FRAME, animate);
}
 
function animate(e:Event):void
{
	e.currentTarget.x += e.currentTarget.xVel;
	e.currentTarget.y += e.currentTarget.yVel;
	e.currentTarget.z += e.currentTarget.zVel;
	e.currentTarget.count++;
	if (e.currentTarget.count >= 100)
	{
		e.currentTarget.removeEventListener(Event.ENTER_FRAME, animate);
		container.removeChild(MovieClip(e.currentTarget));
	}
}

Click here for more comprehensive Flash video training

The Bone Tool – Flash CS4 Tutorial

Flash Tutorial 5 Comments »

Inverse Kinematics! The feature we've all been waiting for! IK is going to make character animation a lot easier than it once was. With IK, you can build a bone structure to link different pieces of a character or object together in order to make it easier to animate.

In today's video, Craig will discuss how to create and animate bone structures using Flash's Bone Tool.

Click here for more comprehensive Flash video training

Custom Motion Paths – Flash CS4 Tutorial

Flash Tutorial 9 Comments »

If you're familiar with using motion paths in Flash CS3, then you might be a little confused when trying to create your own custom path using Flash CS4. In Flash CS4, a motion path is automatically created any time you create a motion tween, and there is only so much you can do to customize the path that is created for you.

What if you want to create a motion path from scratch in Flash CS4? Well, in this video, I'll show you exactly how to do it, and you'll discover that it has become easier than ever!

Click here for more comprehensive Flash video training

Flash CS4 Tutorial – 3D Planet Rings

Flash Tutorial No Comments »

In today's tutorial, you'll learn how to use Flash CS4's new 3D Rotation tool in order to transform the stroke of a circle into easy-to-edit planet rings.

Click here for more comprehensive Flash video training

My Beautiful Baby Girl

General Blather 9 Comments »

I usually restrain myself from personal posts on School of Flash, but this time, I couldn't help myself. I took this picture earlier today, and it was too precious not to share!

Flash Video Tutorial – 3D in Flash CS4

Flash Tutorial 15 Comments »

In this tutorial, you'll learn all about the new 3D features included with Flash CS4. The latest release of Flash supports the ability to rotate and move flat objects (movie clips) around in 3D space. In the tutorial, you'll also learn how to animate the 3D rotation of an object using ActionScript's new rotationX, rotationY, and rotationZ properties.

Here is the code for this tutorial:

addEventListener(Event.ENTER_FRAME, rotate3D);
 
function rotate3D(e:Event):void
{
   sof_mc.rotationX += 4;
   sof_mc.rotationY += 4;
}

Click here for more comprehensive Flash video training

Adobe Unveils CS4

Flash Blather, Flash news 1 Comment »

This morning, I joined hundreds of thousands of people around the world for an online streaming presentation of Adobe Creative Suite 4. My overall impression . . . Well, I guess I'm hard to impress.

Read the rest of this entry »

Flash CS3 Tutorial – 'Hit States' for Movie Clip Buttons

Flash Tutorial 7 Comments »

For the most part, the button symbol has gone the way of the dodo for many Flash developers. Because movie clip symbols are so much more flexible than button symbols, most developers have completely stopped using button symbols. Instead, they opt to use movie clip symbols AS buttons.

But What About the Hit State?

Read the rest of this entry »

New! School of Flash Forums Now Live!

Flash Blather 2 Comments »

Can't find the answers to your Flash questions? Can't figure out why you can't get your Flash files to work, even though you followed all the directions in the School of Flash tutorials? Post your question on the School of Flash Forum to see if somebody else has the answers that you so desperately seek.

So drop by the forums, register, create your first post, and then drop me a line and let me know what you think.

Design by j david macor.com.Original WP Theme & Icons by N.Design Studio
Entries RSS Comments RSS Log in