tell studio に開発者アカウントがあります。
私はいくつかの基本的なスニペットを試してみましたが、最後にレコードタグを試しました。
しかし、それは機能していません。イブ NOINPUT TAG も機能していません。
これは私のスニペットです。
<vxml version="2.0" xmlns="http://www.w3.org/2001/vxml">
<form id="form-record">
<record name="greeting" beep="true" maxtime="10s" finalsilence="2000ms">
<prompt>
Please record your greeting after the tone.---------------This line executing
</prompt>
<noinput>
i did not hear anything. <reprompt/> ------this line not working,
</noinput>
</record>
<field name="confirm" type="boolean">
<prompt>
your greeting is <audio expr="greeting"/>
to keep it say yes, to discard it say no.
</prompt>
<filled>
<if cond="confirm">
<prompt> ok, i will save your greeting </prompt>
<submit method="post" namelist="greeting"
next="greetingstore.jsp"/>
<else/>
<prompt> ok, lets try again </prompt>
<clear namelist="greeting confirm"/>
</if>
</filled>
</field>
</form>
</vxml>