Orientation
- Last UpdatedOct 12, 2016
- 1 minute read
The following elements can be specified for an orientation animation link. An orientation animation link cannot be used with slider, size, location, or percent fill animation links.
|
Elements |
Description |
|---|---|
|
Title |
Object name. Optional. |
|
X |
Horizontal offset from object center point. Optional. Default is 0. |
|
Y |
Vertical offset from object center point. Optional. Default is 0. |
|
CWMax |
Value at maximum clockwise rotation. Default is 100. |
|
CWRotation |
Clockwise rotation. Default is 360. Must range from 0 to 360. CWROTATION+CCWROTATION cannot exceed 360. |
|
CCWMax |
Value at maximum counter clockwise rotation. Default is 0. |
|
CCWRotation |
Counter clockwise rotation. Default is 0. Must range from 0 to 360. CWRotation+CCWRotation cannot exceed 360. |
|
Expression |
Analog tag or expression. Required. Object is not created if the expression is invalid or missing. |
Example:
<Orientation>
<Title>Orientation1</Title>
<Expression> <![CDATA[aTag001]]> </Expression>
<X>0</X> <Y>0</Y>
<CWMax>100.0</CWMax>
<CWRotation>360.0</CWRotation>
<CCWMax>0.0</CCWMax>
<CCWRotation>0.0</CCWRotation>
</Orientation>
Minimal example:
<Orientation>
<Expression>aTag001</Expression>
</Orientation>