跳至内容
菜单
此问题已终结
7 回复
13002 查看

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

形象
丢弃
最佳答案

 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.

形象
丢弃
编写者

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

编写者

Yeah I found it but how to make it work ?

编写者

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.

编写者

Yes I will ;)

编写者 最佳答案

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

形象
丢弃
相关帖文 回复 查看 活动
2
5月 23
3394
1
5月 20
12029
2
8月 25
2570
5
7月 25
2564
1
7月 25
977