You need to use sourceRectAtTime():
layer = app.project.activeItem.layer(1);
rect = layer.sourceRectAtTime(0,true);
alert(rect.width);
It returns an object with left, top, width, and height attributes.
Dan
You need to use sourceRectAtTime():
layer = app.project.activeItem.layer(1);
rect = layer.sourceRectAtTime(0,true);
alert(rect.width);
It returns an object with left, top, width, and height attributes.
Dan