I am building a LiveCode stack and want to add drag drop into my app. In particular, I would like to be able to click on one image and drag it to a second location.
I would also like to provide feedback to the user that they are in fact dragging. A thumbnail would be ideal.
I know how to change the cursor when I hover over my image:
on mouseEnter
lock cursor
set the cursor to "hand"
end mouseEnter
on mouseLeave
unlock cursor
end mouseLeave