this is the idea..
i want to put a image… and the user is going to move it, in any part he wants, first i use the image
var R = Raphael("hello_world", 800, 800),
elipse = R.image("mioo.jpg",100,200,100,300);
now the user is going to see the image, with mouse he is going to take it and move it, how do i do it? …
with the last code, it doens’t move, i need it moves.. how do i do it?
Images don’t have cx cy attributes see SVG Specification (Rafael use SVG to render graphics) you must use x and y atributes.
or use transformations: