Go to: Synopsis. Return value. Flags. MEL examples.
whatsNewHighlight [-highlightColor float float float] [-highlightOn boolean] [-showStartupDialog boolean]
whatsNewHighlight is undoable, queryable, and NOT editable.
This command is used to toggle the What's New highlighting feature, and the display of the settings dialog for the feature that appears on startup.None
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
-highlightOn(-ho)
|
boolean
|
|||
|
||||
-highlightColor(-hc)
|
float float float
|
|||
|
||||
-showStartupDialog(-ssd)
|
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. |
// Turn on What's New highlighting if not already on. if(!`whatsNewHighlight -q -highlightOn`) { whatsNewHighlight -highlightOn true; } // Turn off What's New highlighting startup dialog if it is set to appear. if(`whatsNewHighlight -q -showStartupDialog`) { whatsNewHighlight -showStartupDialog false; }