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

SiON example

the simplest example
Get Adobe Flash player
by mash 19 Aug 2009
/**
 * Copyright mash ( http://wonderfl.net/user/mash )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/DWpS
 */

// the simplest example
package {
    import flash.display.Sprite;
    import org.si.sion.*;
    
    public class TheABCSong extends Sprite {
        public var driver:SiONDriver = new SiONDriver();
        
        function TheABCSong() {
            driver.play("t100 l8 [ccggaag4 ffeeddc4 | [ggffeed4]2 ]2");
        }
    }
}