In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

forked from: flash on 2013-10-24

Get Adobe Flash player
by keylogger27328 24 Oct 2013
    Embed
/**
 * Copyright keylogger27328 ( http://wonderfl.net/user/keylogger27328 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/kgf6
 */

package {
    import flash.display.Sprite;
    
    public class ExampleApplication extends Sprite {
        public function ExampleApplication( ) {
            graphics.lineStyle(1, 0, 1);
 
            for(var i:int=0;i<100;i++) {
                graphics.lineTo(Math.random( ) * 400, Math.random( ) * 400);
            }
            var name:String = "Racherd"
            trace(name)
        }
    }
}