Hi,
T1ger
this is the code:
stop();
speed = .2;
angle = 0;
raj.onEnterFrame = function() {
speed += speed;
angl++;
xpos = Math.cos(speed);
ypos = Math.sin(speed);
for (p=1; p<=6; p++) {
this["raj"+p]._rotation = angl;
this["raj"+p]._x += xpos;
this["raj"+p]._y += ypos;
}
};




Reply With Quote