Script_Return
|
VoiceGuide COM
Reference
|
Returns
control of the call to the calling script.
Syntax
object.Script_Return
iLineId, sRvList
|
Part
|
Description
|
|
|
|
object
|
VoiceGuide object
|
|
|
|
iLineId
|
Identification number of the
line
|
|
|
|
sRvList
|
List of Result Variables and
their values. Each RV-Value pair is in format [Name]{Value}
a number of
RV-Value pairs can be specified one after another.
|
|
|
Remarks
Effectively
pops the return destination script/module of the call stack and
start execution at that script/module.
Example
1
set
vg =
CreateObject("vgServices.CommandLink")
vg.Script_Return $RV_LINEID, ""
set vg = Nothing
Example
2
set
vg =
CreateObject("vgServices.CommandLink")
vg.Script_Return $RV_LINEID,
"[PersonalDataVerified]{True}"
set vg = Nothing