The FXScript Reference

For Final Cut Pro created by Joe Maller

true

true

Additional Notes

Other true values

Any non-zero value will evaluate as true if used by itself in an if statement. In the following example, any value for x other than zero will trigger the conditional action:

float x;
x = 5;

if (x)
...
end if