ff: ff: Text speech by Google API

by tsu_droid forked from forked from: Text speech by Google API (diff: 2)
あくまでも 洒落 です。 
最大で全角90文字位だった。
♥0 | Line 30 | Modified 2011-03-05 05:38:30 | MIT License
play

ActionScript3 source code

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

// forked from ffffine's forked from: Text speech by Google API
// forked from clockmaker's Text speech by Google API
/**
 * Text speech by Google API
 * Google API を使った音声合成
 * @author Yasu
 * @see http://log.xingxx.com/2010/05/actionscript-30-6.html (KeadeAS)
 * 日本語の読み上げもできるか試してみた。
 */
package {
    import com.bit101.components.*;
    import flash.display.*;
    import flash.events.*;
    import flash.media.*;
    import flash.net.*;
    import flash.text.*;    

    public class Main extends Sprite {
        private var _input:InputText;

        public function Main() {
            // Title
            var label:Label = new Label(this, 50, 180, "Speech by Google API");
            label.scaleX = label.scaleY = 2;
            
            // Text Input
            _input = new InputText(this, 50, 232, "前原外相、外国人から違法献金", null);
            _input.textField.embedFonts = false;
            _input.textField.defaultTextFormat = new TextFormat("_ゴシック", 9, 0xff0000);
            _input.width = 200;
            _input.maxChars = 90;

            
            // Button
            new PushButton(this, 270, 230, "Speech!", onClick);
        }

        private function onClick(e:Event):void {
            
            var req:URLRequest = new URLRequest(
                "http://translate.google.com/translate_tts"
                + "?tl=ja"
                + "&q=" + encodeURI(_input.text)
            );
            
            var snd:Sound = new Sound(req);
            snd.play();
        }
    }
}