Quote:
Originally Posted by Riot
message(NULL); will work fine. "" is considered null as far as Graal is concerned, as is 0.
The following works fine:
HTML Code:
function onCreated()
{
message("test");
this.scheduleEvent(1, "hide", null);
}
function onHide()
{
message(null);
}
It, however, won't work if you just assign this.chat. this.chat = null; would make the current object's chat "0"
|
I know, But it's good practice to use message(""); ... No non-strings are acceptable xP