select is undoable, queryable, and editable.
This command is used to put objects onto or off of the active list.
If none of the five flags [-add, -af, -r, -d, -tgl] are specified, the
default is to replace the objects on the active list with the
given list of objects.
When selecting a set as in "select set1", the behaviour is for all
the members of the set to become selected instead of the set itself.
If you want to select a set, the "-ne/noExpand" flag must be used.
With the advent of namespaces, selection by name may be
confusing. To clarify, without a qualified namespace, name
lookup is limited to objects in the root namespace ":". There
are really two parts of a name: the namespace and the name
itself which is unique within the namespace. If you want to
select objects in a specific namespace, you need to include
the namespace separator ":".
For example, 'select -r "foo*"' is trying to look for an
object with the "foo" prefix in the root namespace. It is not
trying to look for all objects in the namespace with the "foo"
prefix. If you want to select all objects in a namespace
(foo), use 'select "foo:*"'.
Note: When the application starts up, there are several dependency nodes
created by the system which must exist. These objects are not deletable
but are selectable. All objects (dag and dependency nodes) in the scene
can be obtained using the "ls" command without any arguments. When using
the "-all", "adn/allDependencyNodes" or "-ado/allDagObjects" flags, only
the deletable objects are selected. The non deletable object can still
be selected by explicitly specifying their name as in "select time1;".
In query mode, return type is based on queried flag.
Long name (short name) |
argument types |
Properties |
-all(-all)
|
|
|
|
Indicates that all deletable root level dag objects
and all deletable non-dag dependency nodes should be
selected.
|
|
-allDependencyNodes(-adn)
|
|
|
|
Indicates that all deletable dependency nodes
including all deletable dag objects should be selected.
|
|
-allDagObjects(-ado)
|
|
|
|
Indicates that all deletable root level dag objects
should be selected.
|
|
-visible(-vis)
|
|
|
|
Indicates that of the specified items only those
that are visible should be affected.
|
|
-hierarchy(-hi)
|
|
|
|
Indicates that all children, grandchildren, ...
of the specified dag objects should also be selected.
|
|
-add(-add)
|
|
|
|
Indicates that the specified items should be
added to the active list without removing existing
items from the active list.
|
|
-addFirst(-af)
|
|
|
|
Indicates that the specified items should be
added to the front of the active list without
removing existing items from the active list.
|
|
-replace(-r)
|
|
|
|
Indicates that the specified items should
replace the existing items on the active list.
|
|
-deselect(-d)
|
|
|
|
Indicates that the specified items should
be removed from the active list if they are on the
active list.
|
|
-toggle(-tgl)
|
|
|
|
Indicates that those items on the given list which
are on the active list should be removed from the active
list and those items on the given list which are not on
the active list should be added to the active list.
|
|
-clear(-cl)
|
|
|
|
Clears the active list. This is more efficient than
"select -d;". Also "select -d;" will not remove sets
from the active list unless the "-ne" flag is also
specified.
|
|
-noExpand(-ne)
|
|
|
|
Indicates that any set which is among the specified
items should not be expanded to its list of members.
This allows sets to be selected as opposed to
the members of sets which is the default behaviour.
|
|