fx notes

Search

Search IconIcon to open search

Useful Expression

Last updated Jul 13, 2023 Edit Source

# Getting the Parent Resolution

especially useful when resolution is subject to change mid project

// get width and height

1
2
me.parent().width
me.parent().height

# Using Time

// set Frame or Second Time since TD started

1
2
absTime.seconds
absTime.frame

# Referencing Table DAT Cells

// get values

1
op('operatorname')[row,column].val

# Referencing Table Info

// get number of rows or columns

1
2
3
op('operatorname').numRows

op('operatorname').numCols

Interactive Graph