Patrick Gallagher wrote:
>[EMAIL PROTECTED] wrote:
>
>>Jay Garcia wrote:
>>
>>>
>>>If found, remove this:
>>>
>>>user_pref("mail.biff.play_sound",true);
>>>user_pref("mail.biff.use_default_sound", false);
>>>user_pref("mail.biff.sound_file", "Path_To_WAV_File");
>>>
>>>Add this:
>>>
>>>// pref to control the alert notification
>>>pref("alerts.slideIncrement", 1);
>>>pref("alerts.slideIncrementTime", 10);
>>>pref("alerts.totalOpenTime", 4000);
>>>pref("alerts.height", 60);
>>>
>>>Other than this, I have no idea presently.
>>>
>>I had the same problem, but when I added this lines to pref. after
>>restarting Mozilla they disapper.
>>
>Edit the file with mozilla closed, or close mozilla, then save the file
>(moz has to be closed when you save the file - or it'll rewrite the old
>file over your changes)
>
Does windows support user.js ?
It's a better place to make changes, since mozilla doesn't overwrite it
and always reads it at startup.
So you edit user.js then restart mozilla (Including the quick launch if
needed)
Put this there:
// change this to false to turn off sound
user_pref("mail.biff.play_sound",true);
user_pref("mail.biff.use_default_sound", false);
user_pref("mail.biff.sound_file", "Path_To_WAV_File");
// pref to control the alert notification
pref("alerts.slideIncrement", 1);
pref("alerts.slideIncrementTime", 10);
pref("alerts.totalOpenTime", 4000);
pref("alerts.height", 60);
-Thomas