I was reading a part of the LuaInterface Tutorial (here) and found out that you can associate an event with a function by doing something similar to this:
button.Click:Add(function()
MessageBox.Show("We wuz clicked!",arg[0],MessageBoxButtons.OK)
end)
Now, with this in mind, does anybody know how I would remove an event handler? Say I just want to disconnect the one above. How would I do it?