/
selectProperty

selectProperty

Description

Select the named properties. No arguments deselects all properties.

Use this command for flexible control over the which channels operations will apply to. You can choose to select individual channels (like TranslationX) or can all translation or rotation channels.

Note that the Graph view displays only the selected channels.

Functional area

Selection

Command syntax

Syntax

selectProperty "name1" "name2" ...[-a] [-r] [-t]

Arguments

Name Type Required Comments
name string no Name(s) of properties to select

Flags

Name Flag arguments Argument type Exclusive to Comments
a 0 r Add to currently selected properties
r 0 a Remove from currently selected properties
t 0 Toggles the currently selected properties

Return value

void

Examples

// These commands select the 3 named markers, then a range
// within the playRange, then the X and Z Translation
// channels of the objects.
select LMWT LFWT LBWT;
selectRange 150 280;
selectProperty "TranslationX" "TranslationZ";
 
// Adds to selection all three Rotation channels 
selectProperty -a "RotationX" "RotationY" "RotationZ";

Additional information

Related commands