Re: AppleScript - "Where is System Events"

2008-05-01 Thread Ian Wood
On 1 May 2008, at 22:28, Sarah Reichelt wrote: Yes, you have a space after Events and before the quote so you are trying to tell app "System Events ", not "System Events". Change the second double ampersand to a single and it all works fine. THANK you! So it was just a typo... Ian __

Re: AppleScript - "Where is System Events"

2008-05-01 Thread Sarah Reichelt
On Thu, May 1, 2008 at 9:18 PM, Ian Wood <[EMAIL PROTECTED]> wrote: > Sometimes I need to find out what applications are currently running on a > Mac, and I've been using the following code to get a list: > > put "tell application" && quote & "System Events" && quote & "to get name > of every proc

Re: AppleScript - "Where is System Events"

2008-05-01 Thread Ian Wood
Yes, I think I'll have to redo it using shell("top -l 1 -o +command") instead. Ian On 1 May 2008, at 12:53, Mark Smith wrote: I just ran that bit of Applescript, and got the 'where is system events' dialog - I'm on 10.4.11. (intel mac). I guess the 'ps' or 'top' commands would work. ___

Re: AppleScript - "Where is System Events"

2008-05-01 Thread Mark Smith
I just ran that bit of Applescript, and got the 'where is system events' dialog - I'm on 10.4.11. (intel mac). I guess the 'ps' or 'top' commands would work. Best, Mark On 1 May 2008, at 12:37, Ian Wood wrote: On 1 May 2008, at 12:29, Jim Sims wrote: It requires 10.3 I think, so maybe tho

Re: AppleScript - "Where is System Events"

2008-05-01 Thread Ian Wood
On 1 May 2008, at 12:29, Jim Sims wrote: It requires 10.3 I think, so maybe those people are using something under 10.3 If they're running 10.3 or below they can't run Aperture, so I doubt that that's the problem. :-( After a bit more digging this may be related to a problem when using

Re: AppleScript - "Where is System Events"

2008-05-01 Thread Jim Sims
On May 1, 2008, at 1:18 PM, Ian Wood wrote: Sometimes I need to find out what applications are currently running on a Mac, and I've been using the following code to get a list: put "tell application" && quote & "System Events" && quote & "to get name of every process" into tS do ts as app

AppleScript - "Where is System Events"

2008-05-01 Thread Ian Wood
Sometimes I need to find out what applications are currently running on a Mac, and I've been using the following code to get a list: put "tell application" && quote & "System Events" && quote & "to get name of every process" into tS do ts as applescript This normally returns an AppleScript