flash on 2013-5-8

by hemingway
[SWF(backgroundColor="#333333", frameRate="60", width="465", height="465")]
♥0 | Line 21 | Modified 2013-05-08 03:51:48 | MIT License
play

ActionScript3 source code

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

package
{
    import flash.events.*;
    import flash.display.*;
    
    [SWF(frameRate=60, width=465, height=465, backgroundColor=0)]
    public class FlashTest extends Sprite
    {
        public function FlashTest()
        {
            addEventListener(Event.ADDED_TO_STAGE, addedToStage);
        }
        
        private function addedToStage($e:*) :void
        {
            removeEventListener(Event.ADDED_TO_STAGE, addedToStage);
            
            init();
        }

        private function init() :void
        {
            
        }
    }
}