NEU: Alle Visual Codes als Code Snippets für Flash CS5:
jetzt hier downloaden .

Duplizieren und Skalieren

Code Actionscript 2.0

Frame-Aktion

for (i = 1; i < 30; i = i + 1) {
square0.duplicateMovieClip("square" + i, i);
this["square" + i]._xscale = 200 + 60 * i;
this["square" + i]._yscale = 200 + 60 * i;
}

Code Actionscript 3.0

var Squares:Array = new Array(); var i = 1; for (i=1; i<30;i = i + 1) { //important: square has to be exported for actionscript //go to "linkage" in library menu Squares[i] = new squareObject(); Squares[i].x = square0.x; Squares[i].y = square0.y; Squares[i].scaleX=2+0.6*i; Squares[i].scaleY=2+0.6*i; addChild(Squares[i]); }

Infos

Das Quadrat square0 wird 29 Mal kopiert. Beim Kopieren wird die Skalierung xscale, yscale kontinuierlich vergrössert. Die Vergrösserung wird aus der Schleifenvariablen i berechnet.

Download

Right click: Flashfile AS 2.0 | Flashfile AS 3.0 | SWF-File


Share