flash on 2012-9-26
...
@author jc at bk-zen.com
♥0 |
Line 16 |
Modified 2012-09-26 11:03:03 |
MIT License
archived:2017-03-20 06:41:38
ActionScript3 source code
/**
* Copyright bkzen ( http://wonderfl.net/user/bkzen )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/i3Rr
*/
package
{
import flash.display.Sprite;
import flash.system.Capabilities;
import flash.text.TextField;
/**
* ...
* @author jc at bk-zen.com
*/
public class Test139 extends Sprite
{
public function Test139()
{
var txt: TextField = new TextField();
txt.autoSize = "left";
txt.text = "version : " + Capabilities.version + "\nisDebugger : " + Capabilities.isDebugger;
addChild(txt);
}
}
}