Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-09 Thread Jon Cohn
If you right click while in the AppleScript editor several basic forms are available. I took two of these to create the script at the end of this message. The first one was Action Clauses->Timeout Clauses and the second was Dialog Clauses->Two Button. So this script should display a dialog box

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-09 Thread Sarah Alawami
Since I don't know how to do dialogues yet I'll have to poke my nose in to that. Is there an easier way then typing all of it by hand, besides asking for help of corse. I want to try and do as much as I can on my own. that's the best way to learn. lol! On Jan 9, 2011, at 10:53 AM, Jon Cohn wrote

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-09 Thread Jon Cohn
Yes, you can set up an apple script to run as an alarm for ical. There is a runscript option in the alarm pull down menu. I don't know what would happen if you are not logged in when the Alarm occurs. And if you are logged in and reading mail right now it would quit you out of mail, so you m

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-08 Thread Sarah Alawami
You don't. I just run mine once a month as I remember to do it. I don' know if there is a way to get ICal to run an apple script. On Jan 8, 2011, at 2:19 PM, annelie robledo wrote: > Okay but do you st how do you add it to Ical to run? > On Jan 8, 2011, at 2:48 PM, Sarah Alawami wrote: > >> Tha

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-08 Thread annelie robledo
Okay but do you st how do you add it to Ical to run? On Jan 8, 2011, at 2:48 PM, Sarah Alawami wrote: > Tha'ts because the poster was using leperd. Here is the script that someone > helped me w write > > try > > tell application "Mail" to quit > do shell script "sqlite3 ~/Li

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-08 Thread Sarah Alawami
Tha'ts because the poster was using leperd. Here is the script that someone helped me w write try tell application "Mail" to quit do shell script "sqlite3 ~/Library/Mail/Envelope\\ Index vacuum;" tell application "Mail" to activate end try O

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-08 Thread annelie robledo
Please help I have made it to step four and I am stuck I go to file then save as but I don't find anything that says save as plugin. Any help would be appreciated. On Jan 3, 2011, at 4:44 PM, Sarah Alawami wrote: > I came acroos this and tried to follow these steps except I can't get past > the

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-07 Thread Sarah Alawami
Inotice it a bit. My mail still crashes when reading some message but I have come to the fact thatmail is refusing to render some messages correctly and I have to live with it. I do notice a slight speed increase. I can hear when it's working as the hard drive activity increases a big deal. S O

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-07 Thread Jon Cohn
Did you notice a speed difference? Between the upgrade to the new SnowLeopard and the fact that I don't regularly exit Mail, I was not sure if there was a difference. Certainly I am having VO do a couple busy remarks when opening mail. Jon On Jan 7, 2011, at 11:43 AM, Sarah Alawami wrote: >

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-07 Thread Sarah Alawami
Yeah works good. S On 07/01/2011, at 6:49 AM, annelie robledo wrote: > Hi > > I was wandering whether you have gotten this to work. I have tried automator > but it is pretty intimidating. > On Jan 3, 2011, at 4:44 PM, Sarah Alawami wrote: > >> I came acroos this and tried to follow these st

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-07 Thread annelie robledo
Hi I was wandering whether you have gotten this to work. I have tried automator but it is pretty intimidating. On Jan 3, 2011, at 4:44 PM, Sarah Alawami wrote: > I came acroos this and tried to follow these steps except I can't get past > the first one. They might have been using an older autom

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-07 Thread Sarah Alawami
Ok it worked. I have another question about apple scripting for something else but I'll try my hand at it first as I think I'm getting used to the language slowely. lol! On Jan 6, 2011, at 6:42 PM, Jon Cohn wrote: > I got the following to compile and run with no error on my computer.. > > THe

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-06 Thread Sarah Alawami
I'll try that. thanks. sorry for all of my lack of know how on this. I'm not used to this language. lol! and I am by no means the best programer in the world. I used to script for something else that's not to be disgussed on this list. lol! S On Jan 6, 2011, at 6:42 PM, Jon Cohn wrote: > I got

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-06 Thread Jon Cohn
I got the following to compile and run with no error on my computer.. THe code you used had 3 basic differences 1. wrapped the entire script in a try block. Try blocks are used so that if any part of the script fails it does not abort, but handles it. Since you didn't catch any errors in the c

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-05 Thread Sarah Alawami
so the code would do something like this: try tell application "Mail" to quit tell application terminal: type sqlite3 ~/Library/Mail/Envelope\ Index vacuum; tell application "Mail" to run end try Sorry. I'm just learning. I've coded in other languages so cannot figure out why I cannot grasp this

Re: following these directions to speed up apple mail, except I can't get past the first step

2011-01-05 Thread Jonathan Cohn
Well, the automation is doing three things, and one could write it in apple script just as easily. For a one time use... 1. quit mail 2. start terminal 3. Enter the following command at the terminal prompt sqlite3 ~/Library/Mail/Envelope\ Index vacuum; On 3 January 2011 17:44, Sarah Alawami wro

following these directions to speed up apple mail, except I can't get past the first step

2011-01-03 Thread Sarah Alawami
I came acroos this and tried to follow these steps except I can't get past the first one. They might have been using an older automater app. I have to do it from the command line every month but I really don't know if tht's efficent and if I'll remember. lol. anyway here are the directions. Sp