Hi,
habe dieses Script hier im Forum gefunden.
PHP-Code:
_root.createEmptyMovieClip ("spirale", -3);
spirale._x = Stage.width / 2;
spirale._y = Stage.height / 2;
spirale._alpha = 30;
radius = 100;
startgrad = 0;
anzahl = 18;
abstand = 20;
rate = 5;
for (zahl = 0; zahl < anzahl; zahl++)
{
radius2 = radius;
startgrad2 = startgrad + (abstand * zahl);
spirale.lineStyle (1, 0x000000, 100);
spirale.moveTo (Math.sin (Math.PI * startgrad2 / 180) * radius, Math.cos (Math.PI * startgrad2 / 180) * radius);
for (grad = startgrad2; grad <= startgrad2 + 360; grad += rate)
{
spirale.lineTo (Math.sin (Math.PI * grad / 180) * radius2, Math.cos (Math.PI * grad / 180) * radius2);
radius2 -= radius / 360 * rate;
}
}
spirale.onEnterFrame = function ()
{
this._rotation++;
};
Jetzt wollte ich es so verändern:
Jemand eine Idee ?