Go to: Synopsis. Return value. MEL examples.

Synopsis

updateAE ( string $node )

Displays the information for the named node in the attribute editor.

Return value

None

Arguments

Variable Name Variable Type Description
$node string : Node name to show in the attribute editor.

MEL examples

      // Create some geometry
        sphere;
        cone;

        // Show the attribute editor with the cone
        AttributeEditor; 

        // Show the sphere in the attribute editor 
        updateAE "nurbsSphere1";