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.
Input Speech (Experimental) to message
Moderator: Martin
Re: Input Speech (Experimental) to message
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:
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
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();
}
Note that action Input Speech is experimental and might not work on all devices.
Regards,
Martin
Re: Input Speech (Experimental) to message
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".

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".
Last edited by etaon on 17 Nov 2013 17:44, edited 2 times in total.
Re: Input Speech (Experimental) to message
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).
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).