Go to: Synopsis. Return value. Flags. MEL examples.
appHome [-iconVisible boolean] [-instrument string] [-setTab string] [-toggleVisibility] [-updateRecentFiles] [-visible boolean]
appHome is NOT undoable, queryable, and editable.
Used for displaying and hiding application home.
None
In query mode, return type is based on queried flag.
iconVisible, instrument, setTab, toggleVisibility, updateRecentFiles, visible
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 app home
appHome -e -v 0;
// Show app home
appHome -e -v 1;
// Show app home on GettingStarted tab
appHome -e -v 1 -t GettingStarted;
// Update app home recent file data
appHome -updateRecentFiles;
// Query app home visilibity
$visible = appHome -q -v;
// Toggle app home visibility
appHome -tv;