RenderFxOp

Introduced

v3.0

Description

Renders an FxOperator of the 'File Output' type.

Note: This command always shows a progress bar regardless of the Interactive parameter value.

Scripting Syntax

RenderFxOp( [InputObj], [Interactive] );

Parameters

Parameter Type Description
InputObj String or FxOperator Object pointer or Object name of FxOperator to connect.

Default Value: Current selection.

Note: If the current selection is not a valid FxOperator, an error occurs.

Interactive Boolean If set to True, a dialog box appears asking the user to start the rendering.

Default Value: False

Examples

VBScript Example

' This example creates an FxTree, two FxOperators, connects

' the operators, and then renders them out.

set oTree = CreateFxTree()

set oFxOp1 = AddFxOp( oTree, "File Input" )

set oFxOp2 = AddFxOp( oTree, "File Output" )

ConnectFxOp oFxOp1, oFxOp2, "1"

' This explicitly sets the Interaction flag to False (the

' equivalent of "RenderFxOp oFxOp2")

RenderFxOp oFxOp2, False