Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
7 Odpovědi
12900 Zobrazení

Hi guys, as far as You know if (event/calendar) reminder i set small window popup with information on the screen, is it possible to add some sound to it ?

If yes, how can i do it ?

I found in im_chat module folder named audio but I can't hear any sound while receiving message in im_chat

Avatar
Zrušit
Nejlepší odpověď

 The audio files you found are for a function on

/static/src/js/im_chat.js

The part of the code you are looking for is starting from line 67:

 window_beep: function() {
if (typeof(Audio) === "undefined") {
return;
}
var audio = new Audio();
var ext = audio.canPlayType("audio/ogg; codecs=vorbis") ? ".ogg" : ".mp3";
var kitten = jQuery.deparam !== undefined && jQuery.deparam(jQuery.param.querystring()).kitten !== undefined;
audio.src = openerp.session.url("/im_chat/static/src/audio/" + (kitten ? "purr" : "ting") + ext);
audio.play();
},

Good hunting.

Avatar
Zrušit
Autor

Hi Federico, thank you, is this part of the code commented or something ? It doesn't work as default.

Autor

Yeah I found it but how to make it work ?

Autor

Cool, just created a folder with audio files and now in im_chat I can hear the sound :) But my question was not strictly related to im_chat. I've had in mind a sound notification about calendar events. So when you create some event in calendar I would like to hear the sound when notification is displayed on the screen.

I tested again the im_chat sound and is working, last time I used it was on an earlyer version of V8. Seems ok to me. But since you need to add sound (client side) for events/calendar you need to edit the js on calendar module.

Autor

Yes I will ;)

Autor Nejlepší odpověď

SS*: all you have to do is just create a folder inside the im_chat module /im_chat/static/src/audio and add some audio files in mp3 or ogg format but remember to change audio file name to 'purr' or 'ting' or if you want to any other but some changes are required in js file /static/src/js/im_chat.js

So finally I have im_chat with audio notification which is very useful.

*SS - simple solution

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
2
kvě 23
3289
1
kvě 20
11897
2
srp 25
2294
5
čvc 25
2372
1
čvc 25
824