Running applications in background via Applescript?

Is it possible to start an application (in this case I’m trying to do this with iSync) in the background, so the window is never visible? I’ve been trying to find how I might do this in the Apple docs, but can’t find a solution.

Can anyone help me?

Thanks in advance!
~c

Try this:

tell application “iSync” to launch
tell application “System Events” to set visible of process “iSync” to false

gl,

Eh, tried that, it flickers the window on the screen.

ty though