flash on 2012-4-7
♥0 |
Line 15 |
Modified 2012-04-07 08:46:20 |
MIT License
archived:2017-03-29 11:13:19
ActionScript3 source code
/**
* Copyright tora ( http://wonderfl.net/user/tora )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/qJPz
*/
package {
import flash.utils.getQualifiedClassName;
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var tf:TextField = new TextField();
addChild(tf);
var a:Array = [1,2];
var b:Array = a.concat();
b[0] = 99;
tf.text = b[0];
}
}
}