Notification sound Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    Notification sound

    texan
    texan
    Forumember


    Male Posts : 103
    Reputation : 1
    Language : English

    Notification sound Empty Notification sound

    Post by texan May 4th 2018, 5:26 am

    Can I have some sort of sound play whenever you have a notification/message?
    Thanks


    Last edited by texan on May 4th 2018, 4:51 pm; edited 2 times in total
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15311
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    Notification sound Empty Re: Notification sound

    Post by skouliki May 4th 2018, 7:53 am

    hello

    am not sure that this works but give it a try 

     create a new javascript ... in all pages 

    Code:
    $(window).load(function () {
        my_setcookie('notifications', document.getElementById('fa_right').innerHTML, false);
        setInterval(function () {
            if (document.getElementById('fa_right').innerHTML != my_getcookie('notifications')) {
                $('body').append('<embed src="http://www.freesfx.co.uk/rx2/mp3s/2/1305_1256857800.mp3" width="0"
    height="0" autoplay="true" style="display: none;" class="notification_sound"></embed>');
                setTimeout(function () {
                    $('.notification_sound').remove();
                }, 3000);
                my_setcookie('notifications', document.getElementById('fa_right').innerHTML, false);
            }
        }, 5000);
    });


    replace this : http://www.freesfx.co.uk/rx2/mp3s/2/1305_1256857800.mp3

    texan
    texan
    Forumember


    Male Posts : 103
    Reputation : 1
    Language : English

    Notification sound Empty Re: Notification sound

    Post by texan May 4th 2018, 4:51 pm

    Okay, now the sound i picked plays about every 3 seconds. and i KNOW i don't have that many notifications! Smile
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15311
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    Notification sound Empty Re: Notification sound

    Post by skouliki May 4th 2018, 6:43 pm

    this is an old code i do not have skills to modify it maybe someone else can help you