Nice effect... but HOW?

Hi guys… long time to post new thread.

i saw this site and i liked this effect how can i do something like it
click here

can anyone help :frowning:

thanx

Claudio, whoever told you that, they were wrong :slight_smile:

var a=10000;
var b=getTimer();
for (var j=0; j<10000; j++) {
	a *= .99;
//	a -= a/100;
}
trace (getTimer()-b);

The first line is 50-60 ms faster than the second :slight_smile: