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練習その1 ドレミファソラシド鳴らすだけです

the simplest example
Get Adobe Flash player
by siouxcitizen 06 Jun 2010
/**
 * Copyright siouxcitizen ( http://wonderfl.net/user/siouxcitizen )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/dfbT
 */

// forked from siouxcitizen's forked from: SiON example
// forked from mash's SiON example
// the simplest example
package {
    import flash.display.Sprite;
    import org.si.sion.*;
    
    public class SiONRensyu extends Sprite {
        public var driver:SiONDriver = new SiONDriver();
        
        function SiONRensyu() {
            driver.play("t200 l4 [cdefgab<c c>bagfedc]1");
        }
    }
}