Save <
file name >
Saves all variables
to the given file.
Parameters
< file name >
File to which the variables are stored.
Remarks
- This is useful
when you are not using the Developer Edition. Under Developer Edition
you can watch and change the variables and their values from within the IDE.
But under Standard Edition there is no other way to examine variables.
So Save command will be very helpful under these circumstances.
Example
:MAIN
answer 1
// write all active IVR variables into a text file
save "call.txt"
// Call my application to parse this file for getting information like caller id, date and time of call etc.
run sample.exe "call.txt"
;.......
;.......
hangup
goto MAIN