inform the operator that ...
The currently installed Message Board Parameters system table determines the size and settings for the Message Board.
You can shadow the system-defined handler with any procedure that takes one argument of type
text. Such a procedure is called a user-defined Message Board message handler. Once registered, such a handler receives all messages that would otherwise go to the system-defined handler and be posted to the Message Board.If any activity of a user-defined Message Board message handler causes G2 to post a message to the board, the request goes to the system-defined Message Board handler, which posts the message as if no user-defined handler were in effect.
A user-defined Message Board message handler can itself post messages to the Message Board. G2 passes such a request to the system-defined handler, which posts the message just as if no user-defined handler had been registered.
Resetting G2 does not affect handler shadowing: any handler registered remains in effect when G2 restarts.
To register a message board handler:
g2-register-message-board-message-handler
(procedure: class procedure)
To deregister a message board handler:
g2-deregister-message-board-message-handler ( )
To get the message board handler:
g2-get-message-board-message-handler ( ) -> {handler: class procedure | false: truth-value}
false if none is registered.