When I copy a track in my music application, both text and the file are copied. For example: if i paste in a text file this text is pasted "Slowdive - Alison", and if I paste in a folder the mp3 is pasted. I know that in C# you can use Clipboard.GetFileDropList() to get the path of the file. But how do I do this in Autoit? Get the path.
I have tried these two, both result in text like "Slowdive - Alison"
#include <Clipboard.au3>
MsgBox(0, "", ClipGet())
MsgBox(0, "", _ClipBoard_GetData())