flash on 2011-7-10
♥0 |
Line 15 |
Modified 2011-07-10 06:07:46 |
MIT License
archived:2017-03-20 11:00:42
ActionScript3 source code
/**
* Copyright geckojsc ( http://wonderfl.net/user/geckojsc )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/puk4
*/
package {
import flash.text.TextField;
import flash.display.*;
public class Main extends Sprite {
public function Main() {
var a:* = [], g:* = graphics, x:int, y:int, i:int;
for (;x<50;x++) {
a[x]=[];
for (;y<40;y++) a[x][y] = 1;
}
//for (;i<
g.beginFill(0x000000);
g.drawRect(20, 20, 20, 20);
/*
var t:* = new TextField();
t.width = 1000;
t.text = a[0].toString();
addChild(t);
*/
}
}
}