Jump to content
  • 0

Немое окно.


sel-aleksin
 Share

Question

Помогите разобраться. Задача такая, по истечение таймера на странице нужно чтобы выдавалось окно с текстом. Собственно скрипт есть, и он работает

//Сообщение, выводимое на экран, когда истечет таймер

var textmessage = "Время истекло.";

//Задаем интервал проверки таймера

var interval_timeout = 500;

//Проверяем принадлежность к сайту

var cm = get_domain(document.URL);

if (cm == "qwerty.ru" || cm == "http://qwerty.ru"){

//Проверяем, есть ли на странице таймер

var timer_div = document.getElementById('left_time');

if (timer_div != undefined){

//Если таймер есть, то ждем, когда он станет равным 0

check_timer('left_time');

} else {

timer_div = document.getElementById('left_time2');

if (timer_div != undefined){

check_timer('left_time2');

} else {

timer_div = document.getElementById('left_time3');

if (timer_div != undefined){

check_timer('left_time3');

} else {

timer_div = document.getElementById('left_time');

if (timer_div != undefined){

check_timer('left_time4');

};

};

};

};

};

function check_timer(object){

timer1 = document.getElementById(object);

window.status = timer1.innerHTML;

if (timer1.innerHTML.indexOf("0:00:00")>-1){

//Если таймер = 0, останавливаем проверку и выдаем сообщение

// show_popup();

alert(textmessage);

} else sx = setTimeout(function(){check_timer(object);}, interval_timeout);

}

function show_popup(){

var popwnd = window.open("about:blank","new","width=3000,height=2000,location=0");

popwnd.document.open();

popwnd.document.write("<html><body><font size='12px'>" + textmessage + "</font></body></html>");

popwnd.document.close();

}

function get_domain(url) {

var start, end;

start = url.indexOf("/",0) + 2;

end = url.indexOf("/",start);

return(url.substring(start,end));

}

Нужно, чтобы вместе с этим окном выдавалось звуковое оповещение, либо оно каким то другим образом привлекало к себе внимание. Например всплывало поверх всех остальных окон.

Я посмотрел какие параметры может иметь window.open( адрес файла, имя окна, параметры ), Как правильно сделать так чтобы в этом открываюшемся новом окне проигрывался какой то звук.

Что то типо того

function show_popup(){

var popwnd = window.open("http://yakim.at.ua/alt.swf

","new","width=3000,height=2000,location=0");

popwnd.document.open();

popwnd.document.write("<html><body><font size='12px'>" + textmessage + "</font></body></html>");

popwnd.document.close();

}

Как правильно это реализовать?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
alert() чем не понравился? Текст есть, звук тоже

Потому что впервые о нем услышал =(

Описание

Выводит на экран диалоговое окно JavaScript alert с кнопкой ОК и определённым программистом сообщением.

[window.]alert(AlertMessage)

Как использовать его со звуком нигде не нашёл =(

Link to comment
Share on other sites

  • 0

Подойдёт и системный =) Я не шарю в джава скрипт, правильно ли я понял, что мне нужно раскоментировать

// show_popup();

alert(textmessage);

} else sx = setTimeout(function(){check_timer(object);}, interval_timeout);

}

А следующую за ним функцию открытия окна

function show_popup(){

var popwnd = window.open("about:blank","new","width=3000,height=2000,location=0");

popwnd.document.open();

popwnd.document.write("<html><body><font size='12px'>" + textmessage + "</font></body></html>");

popwnd.document.close();

}

просто удалить?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy