Title: Re: Templates?
I use a script to do this, attached below. Note that you need to select the contact in the contacts pane for this script to work. I suppose I could make it also work with the contact in the current window, but have not gotten around to that.
tell application "Microsoft Entourage"
set Sel to the selection
set Stype to class of (item 1 of Sel)
count Sel
if the result is not 1 or Stype is not contact then
error "You must select only one contact."
return
end if
set contact1 to item 1 of Sel
-- company
set company of contact1 to "The Company"
-- business web page
set business web page of contact1 to "The URL"
-- Business address fields
set street address of business address of contact1 to "The street address"
set city of business address of contact1 to "City"
set state of business address of contact1 to "ST"
set zip of business address of contact1 to "00000-0000"
set country of business address of contact1 to "USA"
-- main phone number
set main phone number of contact1 to "+1-415-555-1212"
set business fax phone number of contact1 to "+1-415-555-1213"
-- Japanese format
set Japanese format of contact1 to false
set sync with palm of contact1 to true
end tell
--
Eric Hildum
> From: William Lane <[EMAIL PROTECTED]>
> Reply-To: "Entourage:mac Talk" <[EMAIL PROTECTED]>
> Date: Tue, 19 Nov 2002 18:34:08 -0700
> To: "Entourage:mac Talk" <[EMAIL PROTECTED]>
> Subject: Templates?
>
> A throw back to the Claris Organizer/Palm desktop
>
> Is it possible in Entourage to create 'Templates'? That is, a great number
> of my contacts are in Calgary, it would be nice if either a. I could fill in
> the City, Province, Country etc and save that info so I don't have to retype
> it for each Calgary contact or, b. failing that, if I complete the boxes
> once if Entourage could then 'remember' and prompt me. Much like what
> happens with e-mail addresses.
- Templates? William Lane
- Re: Templates? Eric Hildum
- Re: Templates? William Lane
- Re: Templates? Eric Hildum
- Re: Templates? Allen Watson
- Re: Templates? William Lane
- Re: Templates? Allen Watson
- Re: Templates? William Lane
