Move Event in iCal?

Anybody help me with the code to move an existing event from one iCal calendar to another?

Hi,


tell application "iCal"
	move event 1 of calendar "source" to end of events of calendar "destination"
end tell

There appears to be no way any more to move events between calendars that are on iCloud.

Symptom: duplicate event shows up in iCal (Lion), created correctly, on destination calendar, for an instant. It then is immediately deleted apparently by iCal, leaving the event on the original calendar.

I’ve tried move & duplicate as follows:

tell application "iCal"
	set acal to calendar "Testing1"
	set target to calendar "Testing2"
	set the_event to some event of acal whose summary begins with "Testing 5"
	--set the_result to move the_event to after events of target
        --set the_result to move the_event to the end of events of target
	--set the_result to duplicate the_event to end of target
	set the_result to move the_event to the end of target
	-- none work!
end tell