| CCXML Voxeo 1.0 Development Guide | Home | Frameset Home |
| expr | Data Type: (ECMAScript Expression) | Default: none - attribute is required |
| The expr attribute specifies the value to assign to the variable in question. This may be any valid ECMAScript value. | ||
| name | Data Type: (variable name) | Default: none - attribute is required |
| The name attribute indicates the name of the variable. Any valid ECMAScript variable names are permitted as a value for this attribute. | ||
| <?xml version="1.0" encoding="UTF-8"?> <ccxml version="1.0"> <var name="MyVar" expr="'MyValue'"/> <eventhandler> <transition event="connection.CONNECTION_ALERTING" name="evt"> <accept/> </transition> <transition event="connection.CONNECTION_CONNECTED"> <log expr="'MyVar = ' + MyVar "/> <disconnect/> </transition> <transition event="call.CALL_INVALID"> <exit/> </transition> </eventhandler> </ccxml> |
| ANNOTATIONS: EXISTING POSTS |
| login |