Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
7 Ответы
13022 Представления

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

Аватар
Отменить
Related Posts Ответы Просмотры Активность
2
мая 23
3404
1
мая 20
12049
2
авг. 25
2624
5
июл. 25
2599
1
июл. 25
1018