Changes

Jump to navigation Jump to search

var.unmonitor

687 bytes added, 14:36, 1 June 2011
Created page with "var.'''unmonitor''' is a function that is part of the Var Library. <br> This function turns off monitoring of a variable (given in the arguments). == Syntax == var.'..."
var.'''unmonitor'''&nbsp;is a function that is part of the Var Library.

<br>

This function turns off monitoring of a variable (given in the arguments).

== Syntax ==

var.'''monitor(varname)'''<br> disables monitoring of the variable varname (must be a string).

== Example ==

<source lang="lua">
function on.create()
var.monitor("sol")
--turn monitoring on for the variable "sol"
end

function on.varChange(list)
--The variable got changed
var.unmonitor("sol")
--Turn the monitoring off
return 0 -- allow the change
end
</source>

== See also ==

*[[var.list]]<br>
*[[var.recall]]<br>
*[[var.recallstr]]<br>
*[[var.store]]<br>
*[[var.monitor]]<br>

[[Category:var]]
68

edits

Navigation menu