VBScript 1.4.0
This property contains the number of the caller when the persistent varibale was stored first time.
Dim Announcement Set Announcement = new PersistentVariable Announcement.Name = "Welcome" If Not IsNull(Announcement.Created) Then PBXScript.OutputTrace "Created: " & FormatDateTime(Announcement.Created) PBXScript.OutputTrace "CreatedByName: " & Announcement.CreatedByName PBXScript.OutputTrace "CreatedByNumber: " & Announcement.CreatedByNumber End If
This propery returns a string value.
This property allows read access only.
If a variable wasn't set before you access this property, an empty string will be returned.
You can use the CallerNumber property before writing the first time into this variable to define an own number to be written into CreatedByNumber, instead of the number of the current caller.
By Tom Wellige