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

CEP: Drag and Drop between Premiere and Extension

Explorer ,
May 06, 2020 May 06, 2020

Copy link to clipboard

Copied

I want the user to be able to drag video items from Media Browser to the extension panel. And here is my ondrop callback of the html element:

function drop(ev) {
     ev.preventDefault();
     var data = ev.dataTransfer;
     alert('data.files.length : '+data.files.length);
     alert('data.items.length : '+data.items.length);
}

Result:

data.files.length : 0
data.items.length : 0

Question:

How can I know which video item was draged ? Is it possible at all ?

 

TOPICS
SDK

Views

1.1K

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 , May 06, 2020 May 06, 2020

Dragging one or more file paths FROM a panel, TO PPro is supported; dragging from PPro to a panel is not supported. 

Votes

Translate

Translate
Adobe Employee ,
May 06, 2020 May 06, 2020

Copy link to clipboard

Copied

Dragging one or more file paths FROM a panel, TO PPro is supported; dragging from PPro to a panel is not supported. 

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
New Here ,
Jun 24, 2024 Jun 24, 2024

Copy link to clipboard

Copied

LATEST

I have develop the custom plugin. How to drag the file from the panel to PPro timeline?

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