PDA

View Full Version : Feel free to download Contract for designers


Ausvin
03-04-2007, 02:58 PM
here
I just open a new community for designers


http://www.sweapon.com/webboard

Please feel free to update and download stuffs from here


:D thanks everyone



I have some scripting for you guys too

stop();
i = 1;
time = 1000;
count = 50;
ballScale = 200
function dup(){
trace(time);
ball.duplicateMovieClip("ball"+i,i);
_root["ball"+i]._x = random(550);
_root["ball"+i]._y = random(400);
_root["ball"+i]._xscale = random(ballScale);
_root["ball"+i]._yscale = _root["ball"+i]._xscale;
time = random(1000);
if(i==count){
clearInterval(num);
}
i++;
}
num = setInterval(dup,time);

for duplication of balls

:D