-
How to get list of shown properties in the timeline panel
Dear all,
I need to find list of shown properties in the timeline. For example, by default, a shape layer has two property groups only:
1- Contents
2- TransformThe problem is when I try to obtain the layer properties, like below, it returns list of all possible properties. (i.e all AVLayer properties like ‘Marker’, ‘Time Remap’ and so on.)
for (var layerIndex = 1; layerIndex <= comp.layers.length; layerIndex++)
{
var layer = comp.layers[layerIndex];for (var groupIndex = 1; groupIndex <= layer.numProperties; groupIndex++)
{
var propGroup = layer.property(groupIndex);// How do I know if this prop-group is currently
// available (shown) in the timeline panel.
}
}
Thanks in advance
Sorry, there were no replies found.