Skip to content

AddVar

To get the AddVar keyword in the command line type AddVar or the shortcut Ad in the command line.

AddVar is a function keyword to change or extend content of show specific variables.

AddVar $variablename = numericvalue

AddVar $variablename = “text”

[Channel]> SetVar $myname = “John”

 - Sets the variable $myname to John

 

[Channel]> AddVar $myname = ” Doe”

 - Sets the variable $myname to John Doe

 

[Channel]> SetVar $mycounter = 5

 - Sets the variable $mycounter to 5

 

[Channel]> AddVar $mycounter = 6

 - Sets the variable $mycounter to 11