say-as acroynm
Posted: Sat Mar 01, 2014 1:08 pm
From Reference: http://www.plumvoice.com/docs/dev/voicexml:tags:say-as
it reads:
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<block>
<prompt>
Acronym is spelled:
<say-as type="acronym">
acronym
</say-as>
</prompt>
</block>
</form>
</vxml>
The output of the above script would be:
Computer: Acronym is spelled: A-C-R-O-N-Y-M.
However when I run this on our hosted platform,
Computer: Acronym is spelled acroynm
Not spelled out, but as the word.
The sub notes from the reference read:
acronym: The acronym tag type works fine in the US, but does not work in the UK. If you are using AT&T Natural Voices and you want to spell out words or say back digits in the UK, you would have to use commas inside of a string such as "a, c, r, o, n, y, m" or "1, 2, 3, 4, 5".
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<block>
<prompt>
Acronym is spelled:
<say-as type="acronym">
a,c,r,o,n,y,m
</say-as>
</prompt>
</block>
</form>
</vxml>
The output of the above script is:
Computer: Acronym is spelled: A comma C comma R comma O comma N comma Y comma M.
It only seems to work if I replace the comma's with spaces.
Am I doing something wrong?
I am in the US, not UK. How can I tell if I have AT&T Natural Voices?
The goal is to have say-as spell.
Thanks,
Don
it reads:
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<block>
<prompt>
Acronym is spelled:
<say-as type="acronym">
acronym
</say-as>
</prompt>
</block>
</form>
</vxml>
The output of the above script would be:
Computer: Acronym is spelled: A-C-R-O-N-Y-M.
However when I run this on our hosted platform,
Computer: Acronym is spelled acroynm
Not spelled out, but as the word.
The sub notes from the reference read:
acronym: The acronym tag type works fine in the US, but does not work in the UK. If you are using AT&T Natural Voices and you want to spell out words or say back digits in the UK, you would have to use commas inside of a string such as "a, c, r, o, n, y, m" or "1, 2, 3, 4, 5".
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<block>
<prompt>
Acronym is spelled:
<say-as type="acronym">
a,c,r,o,n,y,m
</say-as>
</prompt>
</block>
</form>
</vxml>
The output of the above script is:
Computer: Acronym is spelled: A comma C comma R comma O comma N comma Y comma M.
It only seems to work if I replace the comma's with spaces.
Am I doing something wrong?
I am in the US, not UK. How can I tell if I have AT&T Natural Voices?
The goal is to have say-as spell.
Thanks,
Don