Re: Solution (was: echo please)

2004-04-29 Thread Andy Fragen
*This message was transferred with a trial version of CommuniGate(tm) Pro* We didn't add this to our version. It makes it less automatic, other than asking which calendar you want to add the ToDo to. -- Andy Fragen On Thu, Apr 29, 2004, cheshirekat said: The second prompts you to choose how

Re: Solution (was: echo please)

2004-04-29 Thread Andy Fragen
*This message was transferred with a trial version of CommuniGate(tm) Pro* Wayne and everyone else. Here's what Marlyse and I ended up with. AppleScript global theName, theEmail tell application PowerMail 5.0b12 set theMessages to current messages repeat with msg in theMessages

Re(2): Solution (was: echo please)

2004-04-29 Thread Marlyse Comte
cheshirekat: You need to make one change in your code. Add 31 to your list of days. Otherwise you'll never be able to add events to the 31st of any month that has 31 days. I think she does not point to 'day in month' but to 'how many days from now'. ---marlyse

Re: Solution (was: echo please)

2004-04-29 Thread Wayne Brissette
Marlyse Comte [EMAIL PROTECTED] on 29 April 2004 stated: thanks! Andy Fragen helped me modify my original script which ended in a working solution. Looking now on the solution you came up with, I think it interesting to see how different AS approaches can be! It's programming in general. As

Re(2): Solution (was: echo please)

2004-04-29 Thread Marlyse Comte
thanks! Andy Fragen helped me modify my original script which ended in a working solution. Looking now on the solution you came up with, I think it interesting to see how different AS approaches can be! Thanks to all who chimed in on this one. ---marlyse former message(s) quotes:

Re: Solution (was: echo please)

2004-04-29 Thread cheshirekat
On Wed, Apr 28, 2004, the following words from Marlyse Comte [EMAIL PROTECTED], emerged from a plethora of SPAM ... Try this - Be careful of the line wraps: Begin AppleScript property msgPrompt : Please select the calendar you wish to create a new To Do in. property replyPrompt : Reply by email

Re: echo please

2004-04-29 Thread Andy Fragen
*This message was transferred with a trial version of CommuniGate(tm) Pro* Marlyse, I've got plenty of those books as well. Unfortunately never enough time to really get into them. I've taken the script you sent as the solution and changed it to include my suggestions. I tested it and it seems

Re: echo please

2004-04-29 Thread Andy Fragen
*This message was transferred with a trial version of CommuniGate(tm) Pro* Comments inline. On Wed, Apr 28, 2004, Marlyse Comte said: thanks Andy - so, to define a global variable I just write global: nameVariable The syntax is just global nameVariable, without the quotes. I don't often

Re: echo please

2004-04-29 Thread Bob Salsburg
that one was close! but the syntax between mail and pm are not the same, so the moment I change the name from mail to powermail, I get syntax errors. was definitely worth a try. Hah! You didn't think it would be as easy as change the app name, did you? :) I thought maybe the structure would be

Re(2): echo please

2004-04-29 Thread Marlyse Comte
thanks Andy - so, to define a global variable I just write global: nameVariable and that would apply as a variable to PM and to iCal... as it is global. correct? and I would do that before even on run? that might have been my problem before. I kind of bypassed the variable by using the

Solution (was: echo please)

2004-04-29 Thread Marlyse Comte
I fiddled around and it's crude but does the basics: copies the selection in PM and creates a new iCal todo and allows you to select the calendar and puts the selection into the summary (title) of the todo inclusive the prefix 'email' and makes that active (i.e. lets you set the date and

Re(2): echo please

2004-04-29 Thread Tim Lapin
On Wed, Apr 28, 2004 at 5:40 PM, Marlyse Comte sent forth: Thanks Andy. I still believe that if I can adjust the first part of my script to PM's syntax, it would work. Maybe I am asking just too complicated of what I need. It's just 2 things: how do I define a variable, e.g. called

Re: echo please

2004-04-29 Thread Andy Fragen
*This message was transferred with a trial version of CommuniGate(tm) Pro* Marlyse, Here's what I do. I usually don't like defining global variables. I define a global variable at the beginning of the script global: theText tell application PowerMail set theText to the selection --if that

Re(2): echo please

2004-04-29 Thread Marlyse Comte
Thanks Andy. I still believe that if I can adjust the first part of my script to PM's syntax, it would work. Maybe I am asking just too complicated of what I need. It's just 2 things: how do I define a variable, e.g. called theText and how do I copy a PM selection into that variable so I can

Re(2): echo please

2004-04-29 Thread Marlyse Comte
that one was close! but the syntax between mail and pm are not the same, so the moment I change the name from mail to powermail, I get syntax errors. was definitely worth a try. ---marlyse former message(s) quotes: - There is an item called Mail2iCalTodo1.2.scpt at:

Re: echo please

2004-04-29 Thread Andy Fragen
*This message was transferred with a trial version of CommuniGate(tm) Pro* Sorry Marlyse, I saw both messages and have only written one script for PM and iCal. Taking an Outlook invitation and making it into an iCal entry. I found iCal's AppleScript dictionary very lacking. I seem to recall

Re: echo please

2004-04-29 Thread Bob Salsburg
There is an item called Mail2iCalTodo1.2.scpt at: http://homepage.mac.com/WebObjects/FileSharing.woa/wa/default? user=gklein1templatefn=FileSharing1. htmlxmlfn=TKDocument.1.xmlsitefn=RootSite.xmlaff=consumercty=USlang=en You might find the code useful. Works with Mail.app, but places the item

Re(2): echo please

2004-04-28 Thread Marlyse Comte
Rick - I use iCal via Powermail, which is a patcher that rejigs something inside iCal. Now, all my reminder emails are sent by PM. If you want to revert to using Mail for iCal alarms, you have to reinstall iCal, but why would anyone want to revert to using Mail? It's at:

Re(2): echo please

2004-04-28 Thread Marlyse Comte
hehe, it is answer enough though for me - obviously you do not get enough of these requests to get the urge to automate the procedure - right now I myself also enter those todo's manually but sure would like to automatize it. ---marlyse former message(s) quotes: -

Re(2): echo please

2004-04-28 Thread Marlyse Comte
I've seen mods to iCal scripts for other third-party email clients. Is there not one available that also changes the iCal scripts to work with PowerMail? This would be the following: http://www.versiontracker.com/dyn/moreinfo/macosx/21197 This one will have iCal send email notifications via

Re(2): echo please

2004-04-28 Thread Marlyse Comte
thanks for letting me know. I was just really astonished not to get 1 single reaction before, seeing how many now answered the call, makes me feel much better and less lonely on this planet :) ---marlyse former message(s) quotes: - Hi Marlyse, I've posted 2x within a

Re(2): echo please

2004-04-28 Thread Marlyse Comte
thanks for the echo :) No, I am looking for the other flow: PM to iCal I've got an AS that works from Apple Address Book: I can select a name (or email address) and have it create either a todo or an event in iCal with link to the address and/or persons name. I do not know how to adjust that

Re: echo please

2004-04-28 Thread Rick Lecoat
Marlyse; I use iCal via Powermail, which is a patcher that rejigs something inside iCal. Now, all my reminder emails are sent by PM. If you want to revert to using Mail for iCal alarms, you have to reinstall iCal, but why would anyone want to revert to using Mail? It's at:

Re: echo please

2004-04-28 Thread computer artwork by subhash
[Marlyse Comte [EMAIL PROTECTED] schrieb am 28.4.2004 um 12:00 Uhr:] If so, how do you guys keep track of those - email me in a week or email me in 10 days - demands? I simply don't use this feature. I use some times iCal's messages on my machine directly. That's more than enough for me. So I

Re: echo please

2004-04-28 Thread Sherman Wilcox
Marlyse said: This kind of amazes me - is there really NOBODY around who would like to use PM with iCAL and alarms to be reminded to send specific emails, Marlyse, I'd be interested in an answer too. I've seen mods to iCal scripts for other third-party email clients. Is there not one available

Re: echo please

2004-04-28 Thread Jim Pistrang
Hi Marlyse, I've posted 2x within a week a question about PM and AppleScript and both times not one reaction. Not even telling me it doesn't work what I want. This kind of amazes me - is there really NOBODY around who would like to use PM with iCAL and alarms to be reminded to send specific

Re: echo please

2004-04-28 Thread Sherman Wilcox
Marlyse said: This kind of amazes me - is there really NOBODY around who would like to use PM with iCAL and alarms to be reminded to send specific emails, Marlyse, is this what you're looking for? http://www.versiontracker.com/dyn/moreinfo/macosx/21197 -- Sherman

echo please

2004-04-28 Thread Marlyse Comte
I've posted 2x within a week a question about PM and AppleScript and both times not one reaction. Not even telling me it doesn't work what I want. This kind of amazes me - is there really NOBODY around who would like to use PM with iCAL and alarms to be reminded to send specific emails, nicely