TransformXScale Option

 

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

 

Syntax

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

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

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("TransformXScale", "0.6")

  CommandApi.Do()

 

Used by: Transform

 

 

See Also

Automation Model