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

How to reload a premiere pro extension?

Participant ,
Jun 26, 2018 Jun 26, 2018

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
3.0K
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

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

Translate
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

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

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?

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

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