<HTML>
<HEAD>
<TITLE>Re: [X4U] start app in background</TITLE>
</HEAD>
<BODY>
<FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>On 11/2/05 9:43 AM, Jim Freeman &lt;jpfreeman@mac.com&gt; wrote:<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>I don't know if behavior has changed or it depends on the app, but sometimes the launching app will keep jumping to the front and I'll keep having to click on the dock to get back to what I'm doing. In this case I launched iPhoto and was able to work in Mail until iPhoto was ready. I guess I should read LaunchBar documentation and see what they say. And there is Command-H, although I don't know if it would always work with a launching ap. Not a huge deal, just an annoyance and I thought that maybe there was a solution out there.<BR>
</SPAN></FONT></BLOCKQUOTE><FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'><BR>
Jim, this is easy to do with a simple AppleScript. Paste the following into a new Script Editor window and save it as an application (or even just a compiled script as LaunchBar will run the script for you):<BR>
<BR>
--<FONT COLOR="#9900CC"><I> this will launch iPhoto in the background<BR>
</I></FONT><B>tell</B> <FONT COLOR="#004400">application</FONT> &quot;<FONT COLOR="#000077">iPhoto</FONT>&quot; <B>to</B> <FONT COLOR="#004400">launch<BR>
</FONT><BR>
--<FONT COLOR="#9900CC"><I>this will hide it after it launches<BR>
</I></FONT><B>tell</B> <FONT COLOR="#004400">application</FONT> &quot;<FONT COLOR="#000077">System Events</FONT>&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<B>repeat</B> <B>until</B> <FONT COLOR="#004400">exists</FONT> <FONT COLOR="#004400">process</FONT> &quot;<FONT COLOR="#000077">iPhoto</FONT>&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<B>end</B> <B>repeat<BR>
</B> &nbsp;&nbsp;&nbsp;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<B>set</B> <FONT COLOR="#004400">visible</FONT> <B>of</B> <FONT COLOR="#004400">process</FONT> &quot;<FONT COLOR="#000077">iPhoto</FONT>&quot; <B>to</B> <FONT COLOR="#004400">false<BR>
</FONT> &nbsp;&nbsp;&nbsp;<BR>
<B>end</B> <B>tell<BR>
<BR>
</B>It might be overkill for the number of times you&#8217;d use it, but it will do the trick.<BR>
<BR>
HTH,<BR>
<BR>
-- Bill</SPAN></FONT>
</BODY>
</HTML>