Search found 3 matches
- Thu Jul 26, 2007 12:02 pm
- Forum: Need Help with Addons? (MMW4)
- Topic: New Version: Copytags 2.2 (2008-07-18) [MM3]
- Replies: 78
- Views: 51419
Re: New EventHandler OLEDragOver
Hi Maaspuck, Ok I have multiselect drag and drop working :D Script.RegisterEvent .Interf, "OLEDragDrop","lstDestination_OLEDragDrop" Private Sub lstDestination_OLEDragDrop(Data, Effect, Button, Shift, x, y) SDB.MessageBox "In DragDrop",mtInformation,Array(mbOk) End Sub That code was not working ...
- Wed Jul 25, 2007 4:24 pm
- Forum: Need Help with Addons? (MMW4)
- Topic: New Version: Copytags 2.2 (2008-07-18) [MM3]
- Replies: 78
- Views: 51419
Re: New EventHandler OLEDragOver
Hi Maaspuck, I was trying to enable multiple selection drag, that is why I changed the Events used :D The problem lies here DragID = Int((y-19)/14) + 1 The thing is that depending on the monitor / resolution and who knows what else the 19 and 14 do change The recommended way to get the underlying ...
- Tue Jul 24, 2007 4:46 pm
- Forum: Need Help with Addons? (MMW4)
- Topic: New Version: Copytags 2.2 (2008-07-18) [MM3]
- Replies: 78
- Views: 51419
Re: new version [2.0]
Hi Maaspuck, First of all Thanks for this script. Drag and drop doesn't work for me, it jumps all over the place when I try to move one song either up or down. I went over your code, and found that you are using the mousemove event. I tried to recode using Sub lstDestination_OLEDragOver(Data, Effect ...