Video.SetSize

Video.SetSize ( 

string ObjectName,

number Width,

number Height )

Example 1

Video.SetSize("Grower", 100, 150);

Sets the "Grower" video object's width to 100 pixels and it's height to 150 pixels.

Example 2

Video.SetSize("Expand", Video.GetSize("Expand").Width + 200, Video.GetSize("Expand").Height + 100);

Increases the "Expand" video object's current width by 200 pixels and it's current height by 100 pixels. The Video.GetSize action is used here to get the current size of the video object.

See also:  Related Actions