forked from: SiONの練習(プリセットボイスを使う)

by h_sakurai forked from SiONの練習(プリセットボイスを使う) (diff: 32)
import com.bit101.components.*;
♥0 | Line 12 | Modified 2014-03-14 04:20:47 | MIT License
play

ActionScript3 source code

/**
 * Copyright h_sakurai ( http://wonderfl.net/user/h_sakurai )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/fryo
 */

// forked from logicalyze's SiONの練習(プリセットボイスを使う)
package {
    import flash.display.Sprite;
    import org.si.sion.*;
    [SWF(width = "300", height = "150", backgroundColor = "#FFFFFF")]
    public class PlayWithPreseVoicet extends Sprite {
        function PlayWithPreseVoicet() {
            var driver:SiONDriver = new SiONDriver();
            driver.compile("t100 l8 dddddddde+")
            driver.play();
        }
    }
}