VBScript 1.4.0
This property contains the name 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 CallerName property before writing the first time into this variable to define an own name to be written into CreatedByName, instead of the name of the current caller.
By Tom Wellige