Re: Way to configure Outlook Express user/pass?
Re: Way to configure Outlook Express user/pass?
- Subject: Re: Way to configure Outlook Express user/pass?
- From: Kai Edwards <email@hidden>
- Date: Mon, 14 Oct 2002 09:21:41 +0000
on Sun, 13 Oct 2002 22:46:22 -0400, email@hidden wrote:
>
...is there a way to do this configuring while hiding the application from the
>
user? (We're trying to do an ISP configuration CD, and there are subsequent
>
things that we need to configure - - our hope is to not distract the user with
>
Outlook popping up in the middle of the configuration process)
In that case, you may also want to avoid distracting the user with a 'Where
is "Outlook Express"?' dialog, which you should be able to do using the
Finder's 'application file id'. This works OMM:
---------------------------------------------------------------
tell application "Finder"
set appRef to application file id "MSNM"
set {appPath, appName} to {appRef as string, appRef's name}
end tell
launch application appPath
tell application "Finder"
repeat until appName is in processes's name
end repeat
set process appName's visible to false
end tell
---------------------------------------------------------------
In addition, after appearing briefly in the background, OE should then be
hidden from view.
Kai
--
email@hidden
email@hidden
_______________________________________________
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.