How to add content ONLY in the work area?
Copy link to clipboard
Copied
When I define a work area and the write some text. The text show up in the hole timeline! Is there a way to avoid that? I would love if it only showed up in the work area.
Copy link to clipboard
Copied
I don't think this is possible, but you can trim or cut the text layer in the timeline.
*Martin
Copy link to clipboard
Copied
Yes, but then I have to go all the way to both ends every time.- quite timeconsuming 😄
Copy link to clipboard
Copied
There are shortcuts for this:
set in point = ALT + [
set out point = ALT + ]
cut at CTI: CRTL + D
*Martin
Copy link to clipboard
Copied
It's not how After Effects works, or is intended to work. The "work area" is purely to set the playback/render region, it has nothing to do with the composition itself.
You can trim the selected layer with scripting, so you could assign it to a button or keystroke. Something like this:
app.beginUndoGroup("Work Area Trim Layer");
var C = app.project.activeItem;
var L = C.selectedLayers[0];
L.inPoint = C.workAreaStart;
L.outPoint = C.workAreaStart + C.workAreaDuration;
app.endUndoGroup();

