flash on 2011-12-26
♥0 |
Line 14 |
Modified 2011-12-26 13:32:16 |
MIT License
archived:2017-03-20 03:26:57
ActionScript3 source code
/**
* Copyright Caiim. ( http://wonderfl.net/user/Caiim. )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/suYI
*/
package {
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var asd:Array = new Array();
asd.push(new Array(1,2,3));
asd.push(new Array(4,5,6));
var txt:TextField = new TextField();
txt.text = asd.toString();
addChild(txt);
}
}
}