v3.0
Renders an FxOperator of
the 'File Output' type.
Note: This command always shows a progress bar regardless of the
Interactive parameter value.
RenderFxOp( [InputObj], [Interactive] ); |
Parameter | Type | Description |
---|---|---|
InputObj | String or FxOperator | Object pointer or Object
name of FxOperator to connect.
Default Value: Current
selection. |
Interactive | Boolean | If set to True, a dialog box appears asking the user to start
the rendering.
Default Value: False |
' 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 |