set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oFxOp = oTree.AddImageOperator("Noise")
for Cnx = 0 to oFxOp.ConnectionCount - 1
LogMessage oFxOp.GetConnectionName(Cnx) & " support Invert flag? : " & oFxOp.IsConnectionFlagSupported(Cnx, 2)
if oFxOp.IsConnectionFlagSupported(Cnx, 2) then
LogMessage oFxOp.GetConnectionName(Cnx) & " Invert flag set? : " & oFxOp.GetConnectionFlag(Cnx, 2)
end if
LogMessage oFxOp.GetConnectionName(Cnx) & " support Select flag? : " & oFxOp.IsConnectionFlagSupported(Cnx, 1)
if oFxOp.IsConnectionFlagSupported(Cnx, 1) then
LogMessage oFxOp.GetConnectionName(Cnx) & " Select flag set? : " & oFxOp.GetConnectionFlag(Cnx, 1)
end if
next |