Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Open any application multiple times w/o making a copy' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Open any application multiple times w/o making a copy
Authored by: MasterUltan on May 15, '03 11:45:47AM

If you launch any application by running the binary from Terminal, it will start a new process instead of making the other active. For example, in Terminal type:

/Applicatons/Calculator.app/Contents/MacOS/Calculator &

After Calculator launches, rinse and repeat. This works for any application without copying. The same preferences will apply for all, however.



[ Reply to This | # ]
Open any application multiple times w/o making a copy
Authored by: sbwinn on May 15, '03 02:25:35PM

Don't know about the UNIX trick, but duplicating Filemaker 5.5 lets you run it twice. I never would have thought an app that complicated would be able to do it! Filemaker has this nasty modal window system that will hardly ever let you switch between open windows. Duplicating it at least lets me look at two windows at once.



[ Reply to This | # ]
Open any application multiple times w/o making a copy
Authored by: miccet on Apr 15, '09 01:56:40AM

Or make an applescript like this:

do shell script "/Applications/Calculator.app/Contents/MacOS/Calculator -background >&/dev/null&"

Compile as an app, give it the calc icon and voila, you can have multiple calculators, without any terminal.



[ Reply to This | # ]
Open any application multiple times w/o making a copy
Authored by: palahala on Apr 15, '09 02:42:40AM

So, to ensure I understand correctly: if one wants to have three Calculators running, one would compile your AppleScript twice, each with a different name? This would then give one a total of three Calculator "applications" that can be started?

(Thanks for this nice trick!)



[ Reply to This | # ]