Home  |  Forums  |  914 Info  |  Blogs
 
914World.com - The fastest growing online 914 community!
 
Porsche, and the Porsche crest are registered trademarks of Dr. Ing. h.c. F. Porsche AG. This site is not affiliated with Porsche in any way.
Its only purpose is to provide an online forum for car enthusiasts. All other trademarks are property of their respective owners.
 

Welcome Guest ( Log In | Register )

> HTML Question...., or Java, or.......
Series9
post May 1 2007, 07:23 PM
Post #1


Lesbians taste like chicken.
*****

Group: Members
Posts: 5,446
Joined: 22-August 04
From: DeLand, FL
Member No.: 2,602
Region Association: South East States



If you've seen my webpage, you've discovered that I don't know much about writing code.

I've been messing with a simple bit of Java script and can't get something to work.


Below is the code that refreshes my webcam image. I would like to have the ability to add a second webcam image next to the first one and I would like for it to refresh too.

I have been able to add the second webcam image. That's no problem, but when I do, neither image refreshes. I've tried a bunch of stuff, but clearly don't understand enough to make it work.

The code:

<HTML>

<HEAD>

</HEAD>

<BODY onLoad = "webcamRefresh()">
<script LANGUAGE="JavaScript">
<!-- hide

var refresh = 15;
var seconds = refresh;

function webcamRefresh()
{
document.form.counter.value = --seconds;
if (seconds <= 0)
{
var now = new Date();
var imageURL = "webcam.jpg" + "?" + now.getTime();
document.webcam.src = imageURL;
seconds = refresh;
}
refreshTimer = setTimeout("webcamRefresh()", 1000);
}

// -->
</SCRIPT>

<IMG NAME="webcam" SRC="webcam.jpg" WIDTH="512" HEIGHT="384">
<BR>
<FORM NAME="form">
<INPUT NAME="counter" TYPE="text" SIZE="2" VALUE BORDER=0> seconds until refresh
</FORM>

</BODY>

</HTML>
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
 
Reply to this topicStart new topic
Replies
Brando
post May 1 2007, 07:34 PM
Post #2


BUY MY SPARE KIDNEY!!!
****

Group: Members
Posts: 3,935
Joined: 29-August 04
From: Santa Ana, CA
Member No.: 2,648
Region Association: Southern California



That only updates one image, webcam.jpg.

You should try something like... have your webcam software write to two images, webcam1.jpg and webcam2.jpg. a little bit of changes like this:

CODE
<HTML><HEAD></HEAD>

<BODY onLoad = "webcamRefresh()">
<script LANGUAGE="JavaScript">
<!-- hide
var refresh = 15;
var seconds = refresh;
function webcamRefresh()
{
document.form.counter.value = --seconds;
if (seconds <= 0)
{
var now = new Date();
var imageURL1 = "webcam1.jpg" + "?" + now.getTime();
var imageURL2 = "webcam2.jpg" + "?" + now.getTime();
document.webcam1.src = imageURL1;
document.webcam2.src = imageURL2;
seconds = refresh;
}
refreshTimer = setTimeout("webcamRefresh()", 1000);
}
// -->
</SCRIPT>

<IMG NAME="webcam1" SRC="webcam1.jpg" WIDTH="512" HEIGHT="384">
<IMG NAME="webcam2" SRC="webcam2.jpg" WIDTH="512" HEIGHT="384">
<BR>
<FORM NAME="form">
<INPUT NAME="counter" TYPE="text" SIZE="2" VALUE BORDER=0> seconds until refresh
</FORM>
</BODY></HTML>

and things should work with 2 webcams running. It will refresh both at the same time.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

Posts in this topic


Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 4th July 2025 - 11:57 AM