I am having problems with getting drag drop to work from bridge to InDesign. I have made an extension that reads information from ouer dam and shows it in bridge. I wont to bee able to drag a node from that data from bridge(It shows fine in bridge with thumbs) to InDesign. I have enabled:
if(infosetName == "item" || infosetName == "all")
{
infoset.cacheData.status = "good";
if(!currentNode.isContainer())
{
infoset.canBeDragSource = true;
infoset.canBeDropTarget = true;
}
}
in
dbiModel.refreshInfoset = function(infosetName)
And made
dbiModel.addToDrag = function(pointerToOsDragObject)
{
return true;
}
dbiModel.wouldAcceptDrop = function(type, sources, osDragRef)
{
return false;
}
And are able to drag the node but other applications dosent accept it as valid.
Whot am i missing?
North America
Europe, Middle East and Africa
Asia Pacific