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

Is it possible to change the current time (CTI) with a plugin/AEGP?

Engaged ,
Jun 21, 2020 Jun 21, 2020

Copy link to clipboard

Copied

I've had a browse of this forum and searched the SDK, and I couldn't find a way to do this. Is it possible? Thanks.

TOPICS
SDK

Views

277

Translate

Translate

Report

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

correct answers 1 Correct answer

Community Expert , Jun 21, 2020 Jun 21, 2020

get the comp's item, and then use AEGP_SetItemCurrentTime

Votes

Translate

Translate
Community Expert ,
Jun 21, 2020 Jun 21, 2020

Copy link to clipboard

Copied

get the comp's item, and then use AEGP_SetItemCurrentTime

Votes

Translate

Translate

Report

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
Community Beginner ,
Jun 23, 2020 Jun 23, 2020

Copy link to clipboard

Copied

LATEST

Here's a more detailed answer:

suites.PFInterfaceSuite1()->AEGP_GetEffectLayer(in_data->effect_ref, &m_layerH)

suites.LayerSuite8()->AEGP_GetLayerParentComp(m_layerH, &m_compH);

suites.CompSuite11()->AEGP_GetItemFromComp(m_compH, &compItemH);

suites.ItemSuite9()->AEGP_SetItemCurrentTime(compItemH, &compTime)

Votes

Translate

Translate

Report

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