Advertisement
Advertisement
| 07.15.2008 at 07:42AM PDT, ID: 23566237 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
var numFeather = 5;
i = 0;
while (i<numFeather) {
duplicateMovieClip(line_mc0, "line"+i, i-99);
++i;
}
line1._height -= 5;
line2._height -= 10;
line3._height -= 15;
line4._height -= 20;
line5._height -= 25;
line1._width -= 5;
line2._width -= 10;
line3._width -= 15;
line4._width -= 20;
line5._width -= 25;
|