The "handle" for the filled actor is its top left corner.
When the filled actor is created it is placed in the top left corner of the view.
x = -(view.width/2);
y = -(view.height/2);
When the filled actor is clicked it sends the main actor to:
xmouse - (view.width/2)
ymouse - (view.height/2)
This is because xmouse and ymouse are "screen co-ordinates". They need to be converted to "game" co-ordinates.
Hope this helps. I often find the difference between handles, view co-ordinates and game co-ordinates a bit tricky....
