85 letters (9*9 table)

by o8que forked from 103 letters (9*9 table) (diff: 9)
♥2 | Line 9 | Modified 2010-03-08 00:55:40 | MIT License
play

ActionScript3 source code

/**
 * Copyright o8que ( http://wonderfl.net/user/o8que )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/d58w
 */

// forked from nitoyon's 103 letters (9*9 table)
package {
    import flash.display.Sprite;
    import flash.text.TextField;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
			with(y=1)for(;x++<9||(x=1,y++<9);t.x=x*20,t.y=y*15)addChild(t=new TextField).text=x*y
        }
    }
}
/*
with(y=1)
	for(;x++<9||(x=1,y++<9);t.x=x*20,t.y=y*15)
		addChild(t=new TextField).text=x*y
*/