00:00
00:00
Newgrounds Background Image Theme

Jojo just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Reviews for "How To Fade"

thanks

thanks man im a newb im beginning flash person that helped nothing hard to make but helps a lot

nice tutorial

handy i was wondering how to do that

yo

sorry i dident really like it but please keep on trying and dont let me discurage you ( ^ _ ^ )

Stizzle24 responds:

hey baby its all good...lol...this is more for people who are learning to create animations and to learn skills in flash

DUMB!!!

pointless

Stizzle24 responds:

how is this pointless...there is an obvious point u dumbass.."How to Fade" Jesus....dude go get an education

Tweens are, ok but...

That's really a pretty decent tutorial, but I prefer the Actionscript method myself. You just create your object, convert it to a symbol (Movie Clip) and add the following Actionscript:

onClipEvent (load) {
opaq=0;
}

onClipEvent (enterFrame) {
if(opaq<10)
{
this._alpha-=10;
opaq++;
}
}

You can adjust how quickly or slowly it fades by adjusting the

if(opaq<10)

and

this._alpha-=10;

...lines. You might wish to ammend the tutorial to reference using Actionscript to fade up/down as well, but that's your choice. Keep up the good work. ^_^

Stizzle24 responds:

I didnt know about that...thanks maybe i will use that sumtime