Page 1 of 1

Input Speech (Experimental) to message

Posted: 14 Nov 2013 20:09
by etaon
Hi. I dont know english. Sorry.
Im very like this programm. This is ideal.
Please, help me create flow with Input Speech (Experimental).
I need listen my word. And create message on screen. In the beginning.
Im create flow to run app with Input Speech (Experimental) later.
To example, push "back" in all app with my voice.

Re: Input Speech (Experimental) to message

Posted: 16 Nov 2013 09:14
by Martin
Hi,

A flow like this might work:

-trigger Notification on Statusbar Selected: select for speech input
-action Input Speech (select Show user interface)
-action Notification on Screen: {value}
-action Control UI with following script:

Code: Select all

if (value=="back")
{
    back();
}
Action Input Speech stores the detected word/sentence in a local variable with name value. The script in action Control UI checks whether the detected word is back and invokes the back function.
Note that action Input Speech is experimental and might not work on all devices.

Regards,
Martin

Re: Input Speech (Experimental) to message

Posted: 16 Nov 2013 21:51
by etaon
Thank you very much :-)
Its work. Now i cant or dont know how insert flow in post. I ll try later on desktop pc.
My flow with russian word "back": http://automagic4android.com/flow.php?i ... beb8917453

And a little question too:
System must listen in real time my one word "system". After this word start listening of command like "back". I think, in this moment it cant be realized.
Or somebody can do it?

I ll try realise with pressing button "camera".

Re: Input Speech (Experimental) to message

Posted: 17 Nov 2013 10:02
by Martin
There should be a button Publish Flows/Widgets when you open the forum within Automagic. It uploads the flow to our server and creates a link on the clipboard you can paste into a post.

Automagic does not support continuous speech input so you have to use some kind of trigger to execute the flow. I think that the plugin AutoVoice might support continuous speech input but I'm not sure (untested).