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

How to reload a premiere pro extension?

Participant ,
Jun 26, 2018 Jun 26, 2018

Copy link to clipboard

Copied

Is there any API available in premiere pro sdk to reload the extension panel?

Premiere Pro Version: 12.0.0
Extension Type: Panel

Thanks,
Meet Tank

TOPICS
SDK

Views

2.3K

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

Adobe Employee , Jun 26, 2018 Jun 26, 2018

Sure; see the 'Refresh panel' button in PProPanel:

https://github.com/Adobe-CEP/Samples/blob/master/PProPanel/index.html#L275

Votes

Translate

Translate
Adobe Employee ,
Jun 26, 2018 Jun 26, 2018

Copy link to clipboard

Copied

Sure; see the 'Refresh panel' button in PProPanel:

https://github.com/Adobe-CEP/Samples/blob/master/PProPanel/index.html#L275

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
Participant ,
Jun 27, 2018 Jun 27, 2018

Copy link to clipboard

Copied

Thank you Bruce Bullis for reply.

This is not working for me as in my panel's case, after opening the panel, I am redirecting to other web application url by window.location.href = <url>

When I use window.history.get(0) to reload then its reload with above web application url from history instead of landing page of the extension due to window.location.href

Here I want to restart panel(reinitialize), is there any API available to restart the panel(reinitialize)? or

Can we close and reopen the extension by extension id?

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
Adobe Employee ,
Jun 27, 2018 Jun 27, 2018

Copy link to clipboard

Copied

LATEST

...is there any API available to restart the panel

Yes, but you're not using it (above). Perhaps you could put a refresh button in a containing page, into which the web application loads?

Can we close and reopen the extension by extension id?

Once your panel closes itself, I don't think you'll have any execution context left, from which to re-open the panel.

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