Re: Running a tell block without application opening (visually)
Re: Running a tell block without application opening (visually)
- Subject: Re: Running a tell block without application opening (visually)
- From: Gary Lists <email@hidden>
- Date: Wed, 11 Feb 2004 04:31:59 -0500
Jim Witte wrote [2/11/04 1:23 AM]:
>
I've got a simple script to open a PPP connection:
>
>
tell application "Internet Connect"
>
open connection (first PPP Configuration)
>
end tell
>
>
Is there something I can add to the tell syntax to suppress the
>
application launch, at least the visual part of the launch?
>
>
Jim Witte
You can tell your application 'to launch' and it will open (or remain) in
the background.
tell app "Internet Connect"
launch
open connection ...
end tell
--
Gary
_______________________________________________
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.