applescript and outlook contacta: make new

Hi all,

I’m working on an Applescript that will allow me to create a new contact in Outlook.

This is what I have thus far based on some old Entourage code and the Applescript Outlook dictionary:

 tell application "Microsoft Outlook"
  activate
  make new contact with properties {display name:displayName, home street address:theAddress, home city:city, home state:theState, home zip:zip, phone:thePhone}
  quit
  end tell

Alas, it fails and tosses back an Event handler error.

Any thoughts?

-Julian