hm_blockmessages

Specifies whether standard messages should be displayed in the status bar.

Syntax

hm_blockmessages state

Type

HyperMesh Tcl GUI

Description

When performing operations that would typically display unneeded messages, the procedure should be wrapped with this command. Error messages can still be displayed from Tcl scripts by using hm_usermessage.

If set to 1, you will need to explicitly set it to 0 again to display HyperMesh generated standard messages.

Inputs

state
0 - displays the messages
1 - blocks the messages

Example

*createmark elems 1 "displayed";  //This generates a message in the message bar.  Now, mouse click anywhere in HM to get rid of this message.
hm_blockmessages 1;  //This blocks the message display.
*createmark elems 1 "displayed";

Errors

None.