Title: Re: Suggestions of workaround for apple script that adds to group
On 1/9/05 9:56 PM, I wrote:
set someCrap to content of theMessage
set AppleScript test item delimiters to {"##"}
set justTheAddress to text item 1 of someCrap
set AppleScript test item delimiters to {""}
make new group entry at group "pixelated.com" with properties {content:justTheAddress}
Sorry, too hasty. Here, fixed:
set someCrap to content of theMessage
set AppleScript's text item delimiters to {"##"}
set justTheAddress to text item 2 of someCrap
set AppleScript's text item delimiters to {""}
make new group entry at group "pixelated.com" with properties {content:justTheAddress}
--
Paul Berkowitz
MVP MacOffice
Entourage FAQ Page: <http://www.entourage.mvps.org/faq/index.html>
AppleScripts for Entourage: <http://macscripter.net/scriptbuilders/>
PLEASE always state which version of Microsoft Office you are using - **2004**, X or 2001. It's often impossible to answer your questions otherwise.
- Re: Suggestions of workaround for apple script that adds to... Paul Berkowitz
