K
koagul8or
Version: 2008
Operating System: Mac OS X 10.5 (Leopard)
Processor: Intel
Email Client: pop
Hi,
I want to write a script to export some of the items in my Entourage database on a regular basis.
From the Entourage Applescript dictionary I can see that the syntax for the export archive command is as follows:
export archive v : export archive data
export archive
to alias : destination file
[only specifier] : limits export to the referenced category or project
[item types list of mail items/contact items/calendar items/task items/note items/project files/all items] : item types to archive (default is all items)
[delete boolean] : delete records after exporting (default is false)
[retain boolean] : retain records that are also in another category or project (default is true; ignored if delete is false or if no category or project is specified)
but I cannot find a definition of valid item types.
I've tried various things but they have all failed.
I'm new to Macs and I'm new to Applescript! Here's what I have so far:
on run
tell application "Microsoft Entourage"
export archive to "/Users/Jason/desktop/test3.rge" item types ("mail items", "task items")
end tell
end run
Can anyone tell me what the vaild types are? Or even better, tell me where it is defined so I can work it out myself!
Thanks in advance,
J
Operating System: Mac OS X 10.5 (Leopard)
Processor: Intel
Email Client: pop
Hi,
I want to write a script to export some of the items in my Entourage database on a regular basis.
From the Entourage Applescript dictionary I can see that the syntax for the export archive command is as follows:
export archive v : export archive data
export archive
to alias : destination file
[only specifier] : limits export to the referenced category or project
[item types list of mail items/contact items/calendar items/task items/note items/project files/all items] : item types to archive (default is all items)
[delete boolean] : delete records after exporting (default is false)
[retain boolean] : retain records that are also in another category or project (default is true; ignored if delete is false or if no category or project is specified)
but I cannot find a definition of valid item types.
I've tried various things but they have all failed.
I'm new to Macs and I'm new to Applescript! Here's what I have so far:
on run
tell application "Microsoft Entourage"
export archive to "/Users/Jason/desktop/test3.rge" item types ("mail items", "task items")
end tell
end run
Can anyone tell me what the vaild types are? Or even better, tell me where it is defined so I can work it out myself!
Thanks in advance,
J