How would I go about clearing an output screen in this language? Any help will be appreciated.
--Seung
ID:162475
Jan 3 2008, 8:41 pm
|
|
In response to Lummox JR
|
|
Hehe, it worked! Thanks Lummox JR. :D
|
In response to Lummox JR
|
|
Is it possible to "null out" an entire row or column in a grid? That would be real helpful. I know I could make my own proc to make it do that, but I was wondering if such a feature already exists.
|
In response to Kakashi24142
|
|
Not automatically, you just have to use that proc to output null the the grids you want to empty.
|
In BYOND 4.0, you can send a null output:
usr << output(null, "mywindow.output_control")
Lummox JR