Re: Copying Body's Content

2004-12-11 Thread Andy Fragen
*This message was transferred with a trial version of CommuniGate(tm) Pro* ~/Mail/PowerMail Files/Custom Scripts/ -- Andy Fragen On Sat, Dec 11, 2004, Richard Hart said: Giovanni Andreani wrote: Another curious thing: where are PowerMail's Scripts stored? PowerMail scripts are stored in 2

Re: Copying Body's Content

2004-12-11 Thread Richard Hart
Giovanni Andreani wrote: Another curious thing: where are PowerMail's Scripts stored? PowerMail scripts are stored in 2 locations. See my message Script Locations in another thread. Richard Hart

Re: Copying Body's Content

2004-12-11 Thread Andy Fragen
*This message was transferred with a trial version of CommuniGate(tm) Pro* Here's one for TextEdit. applescript tell application PowerMail 5.1.1a1 set s to set theMessages to current messages repeat with msg in theMessages set s to s content of msg

Re: Copying Body's Content

2004-12-11 Thread cheshirekat
On Sat, Dec 11, 20043:13 PM, the following words from Giovanni Andreani [EMAIL PROTECTED], emerged from a plethora of SPAM ... ... I don't use BBEdit, but here's an example of getting all the selected messages into one new PowerMail message with AppleScript, which you could then select and copy

Re: Copying Body's Content

2004-12-11 Thread C. A. Niemiec
I've tried the script above, but I can't get Bbedit to open a new window. I changed the syntax with tell application BBEdit Lite 6.1 for OS X I didn't think this was supported on the Lite version. Chris --

Re: Copying Body's Content

2004-12-11 Thread Giovanni Andreani
... I don't use BBEdit, but here's an example of getting all the selected messages into one new PowerMail message with AppleScript, which you could then select and copy to BBEdit: Begin AppleScript property ret : return property rr : ret ret property fromLead : From: property dateLead : Date:

Re: Copying Body's Content

2004-12-11 Thread Giovanni Andreani
*This message was transferred with a trial version of CommuniGate(tm) Pro* Try this. applescript tell application PowerMail 5.1.1a1 set theMessages to current messages repeat with msg in theMessages --set s to source of msg set s to content of msg

Re: Copying Body's Content

2004-12-07 Thread Ben Kennedy
On 07 12 2004 at 4:47 am -0500, Giovanni Andreani wrote: Is there any way I can automatically copy the content of a message, paste it in a text editor (Bbedit), go to the next message and repeat the same action until the last message in the folder is copied? You could export the folder to unix

Re: Copying Body's Content

2004-12-07 Thread Andy Fragen
*This message was transferred with a trial version of CommuniGate(tm) Pro* Try this. applescript tell application PowerMail 5.1.1a1 set theMessages to current messages repeat with msg in theMessages --set s to source of msg set s to content of msg

Re: Copying Body's Content

2004-12-07 Thread cheshirekat
On Tue, Dec 7, 200410:47 AM, the following words from Giovanni Andreani [EMAIL PROTECTED], emerged from a plethora of SPAM ... Is there any way I can automatically copy the content of a message, paste it in a text editor (Bbedit), go to the next message and repeat the same action until the last

Re: Copying Body's Content

2004-12-07 Thread marco osti
Giovanni Andreani 7-12-2004: Is there any way I can automatically copy the content of a message, paste it in a text editor (Bbedit), go to the next message and repeat the same action until the last message in the folder is copied? I think you can using an app like ikeys, keyboard maestro or

Copying Body's Content

2004-12-07 Thread Giovanni Andreani
Hello Is there any way I can automatically copy the content of a message, paste it in a text editor (Bbedit), go to the next message and repeat the same action until the last message in the folder is copied? Am I asking to much? Thank you Giovanni