TransformYScale Option

 

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

 

Syntax

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

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

 

  CommandApi.Construct ("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: Transform

 

 

See Also

Automation Model