Skip to main content
Participant
March 27, 2024
Question

AE2024 Display Color Space Shortcut

  • March 27, 2024
  • 1 reply
  • 482 views

If you set the color engine to [OCIO] in After Effects 2024, you will be able to use [Display Color Space], but this [Display Color Space] cannot be assigned to shortcuts, etc.
Is there any way to toggle between color spaces A and B as shown in the image below?

This topic has been closed for replies.

1 reply

Community Expert
March 27, 2024

using the C SDK AEGP_SetWorkingColorSpace will do the job.

with javascript you can set: app.project.workingSpace = "Rec.709 Gamma 2.4";

Participant
March 28, 2024

Thank you, shachar carmi

I'm not familiar with javascript, but the part I want to change is "Display Color Space".
Attached is an image of the project settings.

Or, if the "Display Color Space" can be changed using the javascript below, I would like to know if I should write the same.

app.project.workingSpace = "Rec.709 Gamma 2.4"

Community Expert
March 31, 2024

to tell the string for the color space you need, read the content of "app.project.workingSpace" while that color space is the active one. then you can copy it to the assignment operation.