Page 1 of 1

New feature request

Posted: 29 Jan 2013 08:26
by bindalji
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.. :)

Re: New feature request

Posted: 01 Feb 2013 11:46
by Martin
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}

Re: New feature request

Posted: 01 Feb 2013 14:09
by bindalji
Thank for the answer Martin. :D