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

Amazing horse :)

Get Adobe Flash player
by makc3d 21 Aug 2011
/**
 * Copyright makc3d ( http://wonderfl.net/user/makc3d )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/3nCT
 */

// forked from yonatan's CMLMovieClipTexture
package {
    import flash.display.*;
    import flash.events.*;
    import flash.net.*;
    import flash.system.*;
    import org.si.b3.*;

    [SWF(frameRate="12")]
    public class FlashTest extends Sprite {
        public function FlashTest() {
            var url:String = "http://assets.wonderfl.net/images/related_images/d/d5/d5ef/d5efb19c4e6af524be0c935a932a653b475d2200";
            var loader:Loader = new Loader;
            loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoad);
            loader.load(new URLRequest(url), new LoaderContext(true));

            var loader2:Loader = new Loader;
            loader2.load(new URLRequest("http://www.weebls-stuff.com/flash/466_horse3.swf"));
        }

        private var mc:CMLMovieClip;
        private var tex:CMLMovieClipTexture;
        private var frame:int = 0;

        private function onLoad(e:Event):void {
            var bmd:BitmapData = Bitmap(e.target.content).bitmapData;
            mc = new CMLMovieClip(this, 0, 0, 465, 465);
            tex = new CMLMovieClipTexture(bmd, 0, 0, bmd.width/4, bmd.height/3, true, 11);
            addEventListener("enterFrame", onEnterFrame);
        }

        private function onEnterFrame(e:Event):void {
            mc.clearScreen();
            //mc.drawTexture(tex, 0, 0, 1, 1, 0, null, null, frame); // why doesn't this work?
            mc.copyTexture(tex, 0, 0, frame);
            frame++;
            if(frame == tex.animationPattern.length) frame = 0;
        }
    }
}