As a Flash beginner this effect looks quite cool to me Does anybody have any tips on how to make those vertical bars that move randomly and how to organize layers or making movie clips for the fading in of the object. Thanks for any help
to fade in, simply create a new movieclip and make a new motion tween.
in the first frame of the mortion tween change the alpha of the movieclip to 0, and to 100 at the end.
if you want to do it with actionscript, you can do it like this:
onClipEvent(enterFrame) {
if (this._alpha < 100) {
this._alpha += 5; //you can change this to make the increasing alpha speed different.
}
}
all i was saying was: you’re giving this guy stuff he doesn’t want. if someone is aiming to create random movement then they would create random movement, they wouldn’t create something that is LIKE random movement, especially when random movement is 100% possible (you may wish to refer above, kmax - i’ve given you a how-to) and also: using as instead of a tween would lower the file size.