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

Customizing Capture

interface specification of
customizing capture timings, disabling capture
you don't have to do this normally, 
capture is automatically taken.
Get Adobe Flash player
by mash 12 May 2009
//
// interface specification of
// customizing capture timings, disabling capture
//
// you don't have to do this normally, 
// capture is automatically taken.
//
package {
    import flash.display.Sprite;
    public class CustomizeCapture extends Sprite {
        public function CustomizeCapture() {

            // don't take a capture
            Wonderfl.disable_capture();
            
            
            // take a capture after 10 sec
            Wonderfl.capture_delay( 10 );

        }
    }
}