You could prehaps try Autohotkey and make your own script for drag and drop. You would need to figure out how you manage the cursor position and stuff like that on your own.
AHK comes with a good guide. If interested start reading the guide regarding these:
Hotkeys, if, Controlsend, send, Mousemove, wingetpos,mousegetpos
In the code you would need 2 parts. One for button down. and one for button up. Here is a concept of the idea for the "DRAG" part AKA left mouse button down.
Code:
~lbutton:
if getkeystate("lbutton", "P")
{
[Get mouse position from first wow]
ControlSend,,{Lbutton down}, ahk_id %WowWinId1%
[mousemove]
ControlSend,,{Lbutton down}, ahk_id %WowWinId2%
[mousemove]
ControlSend,,{Lbutton down}, ahk_id %WowWinId3%
[mousemove]
ControlSend,,{Lbutton down}, ahk_id %WowWinId4%
[mousemove]
ControlSend,,{Lbutton down}, ahk_id %WowWinId5%
}
return
I don't read the forums often so don't expect a reply from me.
Connect With Us