Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

How to add content ONLY in the work area?

Engaged ,
Nov 06, 2019 Nov 06, 2019

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.

TOPICS
User interface or workspaces
534
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mentor ,
Nov 06, 2019 Nov 06, 2019

I don't think this is possible, but you can trim or cut the text layer in the timeline.

 

*Martin

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Nov 06, 2019 Nov 06, 2019

Yes, but then I have to go all the way to both ends every time.- quite timeconsuming 😄

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mentor ,
Nov 06, 2019 Nov 06, 2019

There are shortcuts for this:

 

set in point = ALT + [

set out point = ALT + ]

cut at CTI: CRTL + D

 

*Martin

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 06, 2019 Nov 06, 2019
LATEST

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();

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines