Making new address book in Entourage

I’m trying to create an Address Book in Entourage 2004 for Mac

I’ve tried
tell application “Microsoft Entourage” to make new address book with properties {name:“Personal”}
with the result
“Can’t make class address book”

Can anyone help with code to create a new address book?

This will make a new address book. One needs to specify the at parameter.


on makeEntourageAddressBook(theName)
	tell application "Microsoft Entourage"
		set newAddressBook to make new address book with properties {name:theName as Unicode text} at address book 2
	end tell
	return newAddressBook
end makeEntourageAddressBook