Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on an AppleScript that handles URLs. There's a command one can give which re-creates the list that Safari shows to change the default web browser.

share|improve this question

1 Answer

up vote 1 down vote accepted

If you have added the appropriate entries in your application's Info.plist for the document and URL types, you should be able to just (re)register the application with Launch Services (Safari will also need to be restarted). For Snow Leopard and Lion, the Terminal command would be:

/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -f /path/to/your/app

You can also reset the Launch Services database (see the lsregister help) or use a utility such as TinkerTool.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.