$Bool =
wave.GetTag ("<Wave Filename>","<Tag>")
Used to retrieve the remark attached to a tag/label within the wave file.
Parameters
<Wave Filename>
Indicates the name or the path of the wave file.
<Tag>
The name of the label within the wave file.
Return Value
Retrieves the remark attached with the tag if success, else returns null.
Example
wave.SetTag("welcome.wav","CALL","Call Accepted")
$remark = wave.GetTag("welcome.wav","CALL")
msgbox($remark)
- The function retrieves the remark "Call Accepted" attached to the tag "CALL"
within the welcome.wav file.