[plt-scheme] Can I open an application without showing it?
Here's one way to do it, although it mixes environments in an awkward
way (eg, if Applescript is used, then it probably should launch Preview
also):
Write an Applescript and save it as a run-only application (in this
case, it is called "hide-preview" and saved on the Desktop)...
tell application "System Events"
set visible of process "Preview" to false
end tell
... then this works from scheme...
(require (lib "process.ss"))
(system "open ~/Desktop/hide-preview.app")
rac
On Dec 13, 2005, at 1:19 AM, Fabien DILET,infol2 wrote:
> Hi,
>
> I work on Mac OS X Tiger, and i have to open a file with Preview from
> DrScheme:
> (system "foo.ps")
> But i want the application to be hidden.
> How can I do it?
>
> Thanks
> _________________________________________________
> For list-related administrative tasks:
> http://list.cs.brown.edu/mailman/listinfo/plt-scheme