Re: Run and AppleScript from within and AppleScript
Re: Run and AppleScript from within and AppleScript
- Subject: Re: Run and AppleScript from within and AppleScript
- From: Paul Berkowitz <email@hidden>
- Date: Wed, 04 Dec 2002 23:16:15 -0800
On 12/4/02 11:09 PM, I wrote:
>
On 12/4/02 10:06 PM, "The Other Rob" <email@hidden> wrote:
>
>
> This works, but I suspect that the script is waiting for some kind of
>
> response from the 'test1app' AppleScript application before continuing
>
> with the mail sending code. This is probably not good, and I would
>
> prefer the script to run 'test1app' and then just move on, without
>
> waiting around for the other script. Is this possible?
>
>
tell application "Finder" to open alias "OSX:test1app" -- needs full path
>
That will bring it to the front, of course, at least until you tell Mail to
activate. Try this if you want to keep it in the background:
ignoring application responses
launch application "OSX:test1app"
run application "OSX:test1app"
end ignoring
--
Paul Berkowitz
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.