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. ^_^