By Zevan | December 11, 2008
Actionscript:
-
for (var i:int = 1; i<26; i++) with(addChild(new TextField())) x = 10, y = i * 10, text = "line" + i;
code will create 25 TextFields that say "line1", "line2", "line3" etc...
If you don't already know, Keith Peters has started up the 25 line actionscript contest again... The first round of results are in and you can view the 12 finalists swfs and code here.
I was particularly impressed with this one...by Cay Garrido... when I looked at it I really couldn't figure out how that kind of seemingly complex flocking could be done with 25 lines. You can see the code here.
Inspired by the entries, Peters created a strange attractor in 6 lines.
I can't wait to see next months entries.
Posted in misc | Tagged actionscript, flash |
By Zevan | December 9, 2008
Actionscript:
-
var map:Vector.<Vector.<int>> = new Vector.<Vector.<int>>();
-
map[0] = new Vector.<int>();
-
map[0].push(1);
-
map[0].push(0);
-
map[0].push(0);
-
-
map[1] = new Vector.<int>();
-
map[1].push(0);
-
map[1].push(1);
-
map[1].push(0);
-
-
map[2] = new Vector.<int>();
-
map[2].push(0);
-
map[2].push(0);
-
map[2].push(1);
-
-
/*
-
map:
-
1,0,0
-
0,1,0
-
0,0,1
-
*/
This creates a two dimensional Vector of ints (flash 10 player only). The first line is the real snippet... took me a few minutes to get the syntax right the first time I needed a 2D Vector.
By Zevan | December 8, 2008
Actionscript:
-
stage.frameRate = 30;
-
var xp:Number = 0;
-
var yp:Number = 0;
-
var counter:Number = 0;
-
graphics.lineStyle(0,0x999999);
-
graphics.moveTo(200,200);
-
addEventListener(Event.ENTER_FRAME, onLoop);
-
function onLoop(evt:Event):void {
-
for (var i:int = 0; i <20; i++) {
-
counter += .05;
-
xp=200 + counter * Math.cos(counter);
-
yp=200 + counter * Math.sin(counter);
-
graphics.lineTo(xp, yp);
-
}
-
if (counter> 400) {
-
removeEventListener(Event.ENTER_FRAME, onLoop);
-
}
-
}
Draws a spiral over time.