New feature request

Post your feature requets for new triggers, conditions, actions and other improvements.

Moderator: Martin

Locked
bindalji
Posts: 6
Joined: 29 Jan 2013 08:11

New feature request

Post by bindalji » 29 Jan 2013 08:26

Is it possible to have a flow which speaks numbers on pressing numbers on dialpad ?
For eg: i press "1" and a speech output comes "one".

and i am a little strucked ,

I want to split the location from gps value like "12.23423,34.23455" with comma(,) ; what i actually want to do is url escape comma between the co-ordinates.

thanks for help.. :)

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: New feature request

Post by Martin » 01 Feb 2013 11:46

Speaking the numbers pressed on the dialpad is not possible.

You can replace a part of a string in a script:
loc="12.34,56.78"
loc2=replace(loc, ",", "xyz");//replaces comma by xyz

Why do you want to url escape the comma?
Many services like google maps accept a plain comma:
https://maps.google.com/maps?q=12.34,56.78
so you can create an URL in an SMS or mail like this:
https://maps.google.com/maps?q={locatio ... at,decimal}

bindalji
Posts: 6
Joined: 29 Jan 2013 08:11

Re: New feature request

Post by bindalji » 01 Feb 2013 14:09

Thank for the answer Martin. :D

Locked