Hi Aleksander,
to be honest, I don't know if there is a READY solution for your
problem.
If I had this problem, what came immediately in mind is the following:
1- The user select the differents elements ==> save it all in a
variable (array for exemple)
2- On the start dragg event:
a- just create a container and happend a copy of all selected
element to the container (the tricky part is to be sure that cloned
element are at the same position, but prototype is here :),
b- hide all selected element and
c- drag the container.
rem:You could had some calculation depending of the length of your
element from mouse pointer to calculate a new opacity for the copied
element (that will give you a real desktop icon effect).
3- On stop dragging:
a- recalculate the new position off each element and show them
b- delete the container and all cloned element.
I hope it help you :))
--
David