copy entourage notes to mail notes

Hi guys,
I am looking to write a script to copy entourage notes to mail notes.

I have compiled this:
tell application “Microsoft Entourage”
open main window
set displayed area of main window to notes area
activate
select main window
end tell

tell application “Microsoft Entourage”
open first note
tell application “System Events”
delay 1
keystroke “tab”
delay 1
keystroke “a” using {command down, control down}
delay 1
keystroke “c” using {command down, control down}
delay 1
end tell

set noteTitle to "A New Note"
set noteText to "Some text to enter"
set fullNote to noteTitle & return & return & noteText
set d to 0.5 -- a delay time in seconds

set the clipboard to fullNote

tell application "Mail" to activate
tell application "System Events"
	delay 1
	keystroke "n" using {command down, control down} -- create new note
	delay 1
	keystroke "v" using command down -- paste in the clipboard
	delay 1
	keystroke "w" using command down -- close the note window
	delay 1
	keystroke "h" using command down -- hide mail
end tell

end tell

parts of it work seporately but I can’t seem to get it to select all entorage noteBody and place it on the clipboard.
I know i am using key storke and delays but thats all i know at moment.

I would like it to delete the note in entorage as it makes one in mail also.

Thanks for you help.

Clintonh

Model: Macbook Pro
Browser: Firefox 5.0.1
Operating System: Mac OS X (10.6)