Adobe After Effects CS4 Bedienungsanleitung Seite 656

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 778
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 655
650
USING AFTER EFFECTS CS4
Expressions
Last updated 12/21/2009
Edit an expression manually
1 Click in the expression field to enter text-editing mode.
Note: When you enter text-editing mode, the entire expression is selected. To add to the expression, click within the
expression to place the insertion point; otherwise, you will replace the entire expression.
2 Type and edit text in the expression field, optionally using the Expression Language menu.
To see more of a multiline expression, drag the bottom or top of the expression field to resize it.
3 To exit text-editing mode and activate the expression, do one of the following:
Press Enter on the numeric keypad.
Click outside the expression field.
Example: Use the expression language reference to write an expression
Follow along with this example to learn how to use the After Effects expression language reference to write expressions.
The expression created in this example links the Position property of Solid 2 to the Position property of Solid 1, with
the movement of Solid 2 offset by 2 seconds from the movement of Solid 1.
1 Create two solid layers: Solid 1 and Solid 2.
2 Animate the Position property values for Solid 1 using keyframes. (See “About animation, keyframes, and
expressions” on page 210.)
3 Select the Position property for Solid 2 and choose Animation > Add Expression or Alt-click (Windows) or
Option-click the stopwatch
button for the property. The following expression appears by default:
transform.position
4 Type the following directly over transform.position:
thisComp
5 The element thisComp is a global attribute whose value is a Comp object representing the current composition. To
determine what can follow
thisComp in your expression, look up the return value for thisComp under “Global
objects, attributes, and methods (expression reference)” on page 660.
Note that thisComp returns a Comp object. Next, look at “Comp attributes and methods (expression reference)
on page 667 to see which attributes and methods you can use with a Comp object. One option is layer(index).
The index, or number, inside the parentheses specifies the layer that you want to use. For this example, we assume
that Solid 1 is the first layer in your composition. To retrieve values from the first layer in the active composition,
type
.layer(1) at the end of the expression, to get the following:
thisComp.layer(1)
6 Again, look at the expression elements reference to see that layer(index) returns a Layer object. Look at “Layer
General attributes and methods (expression reference)” on page 669, and find the element you want to use. For
example, if you want to get the values of the Position property for the layer, type .position at the end of the
expression to get the following:
thisComp.layer(1).position
7 From Layer General attributes and methods (expression reference)” on page 669, you can see that the position
attribute returns a property. Look up Property attributes and methods (expression reference)” on page 677 and
notice that you can add a time factor to the expression. To add a specific time, such as current time plus 2 seconds,
type
.valueAtTime(time+2)at the end of the expression to get the following:
Seitenansicht 655
1 2 ... 651 652 653 654 655 656 657 658 659 660 661 ... 777 778

Kommentare zu diesen Handbüchern

Keine Kommentare