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


Click here to return to the 'Setting Mozilla as default' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Setting Mozilla as default
Authored by: shreddiez on Feb 27, '02 07:41:35AM

The previously noted tip of using...
Info = { BundleIdentifier = com.mozilla.mozilla"; };
does add Mozilla to the menu, but IE is still the defualt even when you select Mozilla in the prefs :( I managed to make it work using the following...

web = (
{
DisplayName = "Mozilla";
Info = { CreatorCode = "MOZZ"; };
IsDefaultHandler = YES;
}
);



[ Reply to This | # ]
Setting Mozilla as default
Authored by: kimon on Feb 28, '02 01:00:30AM
the reason this doesn't work is actually because Info = { BundleIdentifier = com.mozilla.mozilla"; }; is incorrect.

if you take at a recent mozilla milestone, you will see that the plist has a name of org.mozilla.Mozilla. That correctly set my default broswer to Mozilla

Kimon

[ Reply to This | # ]