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

Flash Camo Demo

Get Adobe Flash player
by FlashBum 21 Jul 2009
/**
 * Copyright FlashBum ( http://wonderfl.net/user/FlashBum )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/8Gjf
 */

package {
    import flash.display.Sprite;
    import camo.core.display.*;
    
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var cd:CamoDisplay = new CamoDisplay();
            cd.width = 100;
            cd.height = 100;
            cd.move(20, 20);
            cd.borderTop = 10;
            cd.backgroundColor = 0x00ff00;
            addChild(cd);
        }
    }
}