flash on 2013-7-29
♥0 |
Line 11 |
Modified 2013-08-02 15:50:57 |
MIT License
archived:2017-03-20 15:52:36
ActionScript3 source code
/**
* Copyright wwbeyondww1 ( http://wonderfl.net/user/wwbeyondww1 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/1uTl
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class FlashTest extends Sprite {
public var mytext:TextField=new TextField;
public function FlashTest() {
// write as3 code here..
mytext.text=(79*(Math.PI/80)%Math.PI).toString();
addChild(mytext);
}
}
}