Tom Wellige 60 Report post Posted November 29, 2015 This property returns the current number of received new voicemails of the script user. PBXUser.NumberOfNewVoicemails This property is an integer value. This property allows read / write access. By incrementing this value you can enable the new voicemail indication of the current script user. By setting it to 0 you can disable it. ' switch voicemail indication on PBXUser.NumberOfNewVoicemails = PBXUser.NumberOfNewVoicemails + 1 ' switch voicemail indication off PBXUser.NumberOfNewVoicemails = 0 0 Share this post Link to post Share on other sites