TransformXTrans Option

 

The TransformXTrans option changes the X translation value for a Transform module. The OptionValue is a number, indicating the amount of translation to perform in the X direction.

 

Syntax

object.Construct(“ModifyModule”)

object.Option(“Module”, “Transform”)

object.Option(“TransformXTrans”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example changes the X translation value for a Transform module.

 

  CommandApi.Construct ("ModifyModule")

  CommandApi.Option ("Module", "Transform")

  CommandApi.Option ("TransformXTrans", "1")

  CommandApi.Do()

 

Used by: Transform

 

 

See Also

Automation Model