How Can I Mark Message As Read in Entourage?

How can I change the read status of a selected message from unread to read?

Thanks for helping!

Hi

try something like this;

tell application "Microsoft Entourage"
	activate
	set _Messages to current messages
	repeat with theMessage in _Messages
		set properties of theMessage to {read status:read}
	end repeat
end tell

Excellent! Thank you Budgie.