What I'm trying to do:
Launch Firefox's profile manager.
How I'm doing it:
Well, to run profile manager from a terminal window you enter:
I had a google round and the best way to do this is from an AppleScript (saved as "Application Bundle") containing the following:
The problem:
The AppleScript app launches fine and runs Firefox's profile manager, the problem is the AppleScript app doesn't exit and actually stops responding.
How do I get the AppleScript to exit cleanly after launching Firefox?
It must be simple, I'm just utterly clueless when it comes to AppleScript

Thanks!
Launch Firefox's profile manager.
How I'm doing it:
Well, to run profile manager from a terminal window you enter:
Code:
/Applications/Firefox.app/Contents/MacOS/firefox -ProfileManager
Code:
do shell script "/Applications/Firefox.app/Contents/MacOS/firefox -ProfileManager"
The AppleScript app launches fine and runs Firefox's profile manager, the problem is the AppleScript app doesn't exit and actually stops responding.
How do I get the AppleScript to exit cleanly after launching Firefox?
It must be simple, I'm just utterly clueless when it comes to AppleScript
Thanks!