Changes the specifed flag on a connection of the FxOperator.
FxOperator.SetConnectionFlag( Int32 in_nIndex, Int32 in_nFlagID, Boolean in_bValue );  | 
FxOperator.SetConnectionFlag( Index, FlagID, Value );  | 
| Parameter | Type | Description | ||||||
|---|---|---|---|---|---|---|---|---|
| Index | Long | Index of the connection | ||||||
| FlagID | Long | Type of flag
  | 
||||||
| Value | Boolean | New value of the flag | 
set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oFxOp = oTree.AddImageOperator("Noise")
oFxOp.SetConnectionFlag 1, 2, True
 |