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

Extendscript CS6, accessing "clear" button

New Here ,
Jan 15, 2019 Jan 15, 2019

Hi!  I'm new to the forum/extendscript, so I apologize in advance if this question has been asked already.  Does anyone know how to access the "clear" button on the time blend effect in AE CS6 through extendscript?  Thanks!

question 1.jpg

TOPICS
Scripting
710
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
Contributor ,
Jan 18, 2019 Jan 18, 2019

I've never seen a way to access that via scripting.

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
Advocate ,
Jan 19, 2019 Jan 19, 2019

I second Zack - there's no way to access this button via scripting. However, there could be a workaround for this.

Can you explain what this button does exactly?

Reset button would set default effect values, but what about Clear, what does it do?

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
New Here ,
Jan 21, 2019 Jan 21, 2019

Thanks for the responses guys.

The clear button basically "resets" the blending of the frames caused by the effect without changing the values of the accumulation.  You use this one if you see an error as you scrub through the layer. 

I'm just curious, is there a way to access the "reset" button?  Theoretically, wouldn't I be able to access  the "clear" button in a similar way?  Or is the work around method for the "reset" button is where you set all the parameters to "0" manually.

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
Explorer ,
Jan 31, 2019 Jan 31, 2019
LATEST

You can try this dirty work-around by making a script that:

  1. Reads and stores the current values of CC Time Blend effect
  2. Deletes the effect from the layer
  3. Purges the image cache memory with: app.executeCommand(2372);
  4. Re-applies the CC Time Blend effect and re-sets the values with the stored ones

Cheers.

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