Drag'n Drop-Access to Drag Object

Problem:
Hi. Is it possible to get access on Drag Object on a Drop zone in a Drag’n Drop question ?
Via javascript and the member object for examle ?
Regards

ActivePresenter version: 9.1.0

OS: W10

Notes:

Hi @pbouille,

You can use the following script to get an array of drag sources dropped into a drop target

var dropTargetObject = prez.object('drop target name');
var dragSources = dropTargetObject.dropHelper.droppedObjects();

Regards

Hi @Toan, and thank you : this answer provides some help.
Further more is it possible to get an array on “available/authorized drag sources” for a drop target ?
Thanks a lot.
Regards,
Philippe

Hi @pbouille,

Unfortunately, there’s no public function to get accept/correct drag sources for a drop targets.

Regards