View Single Post
 
Old 12-03-2015, 08:38 PM
jike27 jike27 is offline Windows 10 Office 2013
Novice
 
Join Date: Dec 2015
Posts: 1
jike27 is on a distinguished road
Question Receive Powerpoint Slide Data by Drag and Drop from Powerpoint to Java App

I've written most of a Java Application that is intended to receive the file path and slide number of slides that are dragged onto it.

The data received via a Drag Event is as follows:

Code:
    [PowerPoint 12.0 Internal Slides]           java.nio.HeapByteBuffer[pos=0 lim=8 cap=8]
    [PowerPoint 12.0 Internal Color Scheme]     java.nio.HeapByteBuffer[pos=0 lim=8 cap=8]
    [InShellDragLoop]                           java.nio.HeapByteBuffer[pos=0 lim=4 cap=4]
    [ActiveClipBoard]                           java.nio.HeapByteBuffer[pos=0 lim=56 cap=56]
    [Object Descriptor]                         java.nio.HeapByteBuffer[pos=0 lim=296 cap=296]
    [PowerPoint 12.0 Internal Theme]            java.nio.HeapByteBuffer[pos=0 lim=8 cap=8]
    [ms-stuff/preferred-drop-effect]            java.nio.HeapByteBuffer[pos=0 lim=4 cap=4]
    [Link Source Descriptor]                    java.nio.HeapByteBuffer[pos=0 lim=296 cap=296]
I can't seem to find any more documentation on this. How can I go about accessing the data I need?

Is there any documentation on this that would yield insight?
Reply With Quote