I have a panel which allows users to attach files from an external system. I am implementing the drag & drop API to allow this for user convenience (there is also an add button).
For reference it is the following code:
event.dataTransfer.setData('com.adobe.cep.dnd.file.0', [path to clip]);
What I am curious about is if there is a way using the setData method to attach the proxy path for a given asset? The system I am working with generates its own proxies and being able to do this could make loading over slow connections work better. I tried a few things but it always seems to add it as a separate clip in the library instead of attaching it to the main clip.