Go to: Synopsis. Return value. Flags. MEL examples.
textManip [-visible boolean]
textManip is undoable, queryable, and NOT editable.
Shows/hides the text manip.None
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
-visible(-v)
|
boolean
|
|||
|
Flag can appear in Create mode of command | Flag can appear in Edit mode of command |
Flag can appear in Query mode of command | Flag can be used more than once in a command. |
// Hide the text manip, then call headsUpMessage to draw a message in the 3d view. You can't see the message now because it's invisible textManip -v 0; headsUpMessage -time 5.0 "Ouch!" // Show the text manip, the message becomes visible now textManip -v 1;