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 )

 
Reply to this topicStart new topic
> 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
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
Series9
post May 1 2007, 07:45 PM
Post #3


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



I've tried mods very close to what you've done there, but I'm not sure it was exact.

I'll play with it.

My primary webcam image is named "webcam.jpg", not "webcam1.jpg". My second cam is named "webcam2.jpg", as you suggested.

Do you think it will matter?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Series9
post May 1 2007, 08:09 PM
Post #4


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



That did it.

Thanks.

I had been pretty close a couple of times, but......well, you now, I'm not a code writer.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
McMark
post May 2 2007, 11:50 AM
Post #5


914 Freak!
***************

Group: Retired Admin
Posts: 20,180
Joined: 13-March 03
From: Grand Rapids, MI
Member No.: 419
Region Association: None



Joe, one suggestion:

Add a BORDER=0 to your IMG tags. Right now you get a border around the linked images at the bottom of the page.

And here's some logo's for you. Take one, take them all. (IMG:style_emoticons/default/biggrin.gif)



Attached image(s)
Attached Image Attached Image Attached Image
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

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 - 12:53 PM