103 letters (9*9 table)
♥0 |
Line 9 |
Modified 2010-03-07 17:02:02 |
MIT License
archived:2017-03-20 12:28:56
ActionScript3 source code
/**
* Copyright nitoyon ( http://wonderfl.net/user/nitoyon )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/oDbZ
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
with(x)for(i=0;i<81;i++)t=new TextField(),t.text=(x=int(i/9)+1)*(y=i%9+1),t.x=x*20,t.y=y*15,addChild(t)
}
}
}
/*
with(x)
for(i=0;i<81;i++)
t=new TextField(),
t.text=(x=int(i/9)+1)*(y=i%9+1),
t.x=x*20,
t.y=y*15,
addChild(t)
*/