flash on 2010-11-16

by shohei909
♥0 | Line 20 | Modified 2010-11-21 13:40:16 | MIT License
play

ActionScript3 source code

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

package {
    import flash.text.TextField;
    import flash.display.Sprite;
    import net.kawa.tween.easing.*;
    import net.kawa.tween.KTween;
    
    [SWF(frameRate=60)]
    public class FlashTest extends Sprite {
        public var i:Number = 0;
        public var count:int =0
        public var text:TextField = new TextField();
        public function FlashTest() {
            // write as3 code here..
            addChild(text);
            text.text = "0";
            var l:int = 60;
            for( var i:int = 1; i <= l ; i++ ){
                text.appendText("," + Sine.easeInOut(i/l) );
            }
        }

    }
}