Language actionscript
(update (tippfehler!!!)
| Date: | 01/10/06 |
| Author: | atom3000 |
| URL: | n/a |
| Comments: | 5 |
| Info: | n/a |
| Score: |
for(_root.i=0;_root.i<99;_root.i++) {
createEmptyMovieClip( "br"+_root.i, _root.i );
tellTarget("br"+_root.i) {
lineStyle( 1, 0, 50);
moveTo(0, 0);
lineTo(0,-10);
lineTo(-5,-15);
lineTo(-5,-20);
lineTo(-10,-20);
lineTo(-10,-15);
lineTo(-15,-10);
lineTo(-15,0);
lineTo(0,0);
createTextField("t",1,-15,0,90,30);
t.text=_root.i+1;
_x=50+_root.i%20*25;
_y=50+(Math.floor(_root.i/20))*50;
}
}
x=99;
setInterval(
function(){
x--;
if(x+1>0)tellTarget("br"+x)_alpha=0;
}
,
100
);
Download Source | Write Comment
Alternative Versions
| Version | Author | Date | Comments | Rate |
|---|---|---|---|---|
| object-oriented version | Unknown | 04/20/05 | 0 | |
| standard version | David Fichtmueller | 04/20/05 | 3 |
Download Source | Write Comment
Add Comment
Please provide a value for the fields Name,
Comment and Security Code.
This is a gravatar-friendly website.
E-mail addresses will never be shown.
Enter your e-mail address to use your gravatar.
Please don't post large portions of code here! Use the form to submit new examples or updates instead!
Comments
for(_root.i.... -_-
tellTarget -_-
should be corrected