hm_blockerrormessages

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

Syntax

hm_blockerrormessages state

Type

HyperMesh Tcl GUI

Description

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

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

Inputs

state
0 - displays the error messages
1 - blocks the error messages

Example

*createmark 1;  //This generates an error message "Unknown entity type found" in the message bar.  Now, mouse click anywhere in HM to get rid of this error.
hm_blockerrormessages 1;  //This blocks the error message display.
*createmark 1;

Errors

None.