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 2011-2-22

Get Adobe Flash player
by bkzen 23 Feb 2011
/**
 * Copyright bkzen ( http://wonderfl.net/user/bkzen )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/jYXw
 */

// forked from paq's flash on 2011-2-22
package {
    import flash.display.*;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            scaleX = scaleY = 10;
            //with(graphics){var m=moveTo,l=lineTo;lineStyle(1);m(1,2);l(3,2);m(2,1);l(2,5);m(1,4);l(2,2);l(3,4)}
            with(graphics)for(i=0;i++<6;lineTo(2,2))lineStyle(1),moveTo(i<4?i:7-i,(i&1)+(i<4?1:4))
        }
    }
}