W
WPKenny
Guest
Hi,
I was wondering if someone could help me out by coding a simple page for me? I'll cut and paste the existing one at the end of this post.
For those of you who've got/used Webcam32 I want to emulate the "Previous Frames" feature so it shows like a cartoon strip.
The picture filename is wpkenny.jpg and I'd like the code to rename the file to wpkenny2.jpg and increment it until something like wpkenny5.jpg and then delete it.
So I've got five pics on the go like some sort of camera cartoon strip.
Erm. I hope I've explained myself just enough to be understood. Anyway..here's the existing page...
<html>
<head>
<title>WPKenny cam</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT LANGUAGE="javascript">
<!--
var x = 5
function StartClock(){
document.form1.clock.value = x
timerID = setTimeout("StartClock()", 1000)
x = x-1
if (x==0){
location.reload();
}
}
//-->
</SCRIPT>
</head>
<body bgcolor="#C68E4A" text="#9674C8" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="StartClock()">
<div align="center">
<center>
<table border="0" width="100" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="middle">
</td>
</tr>
</table>
</center>
</div>
<div align="center">
<center>
<table border="0" width="321" cellspacing="0" cellpadding="0" bgcolor="#007518">
<tr>
<td align="center" bgcolor="#008000" width="319">
<FORM NAME="form1">
<font face="Arial" color="#000000" size="3">
Refreshing in <INPUT TYPE="text" SIZE="2" NAME="clock">
seconds</font>
</FORM></td>
</tr>
</table>
</center>
</div>
</body>
</html>
I was wondering if someone could help me out by coding a simple page for me? I'll cut and paste the existing one at the end of this post.
For those of you who've got/used Webcam32 I want to emulate the "Previous Frames" feature so it shows like a cartoon strip.
The picture filename is wpkenny.jpg and I'd like the code to rename the file to wpkenny2.jpg and increment it until something like wpkenny5.jpg and then delete it.
So I've got five pics on the go like some sort of camera cartoon strip.
Erm. I hope I've explained myself just enough to be understood. Anyway..here's the existing page...
<html>
<head>
<title>WPKenny cam</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT LANGUAGE="javascript">
<!--
var x = 5
function StartClock(){
document.form1.clock.value = x
timerID = setTimeout("StartClock()", 1000)
x = x-1
if (x==0){
location.reload();
}
}
//-->
</SCRIPT>
</head>
<body bgcolor="#C68E4A" text="#9674C8" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="StartClock()">
<div align="center">
<center>
<table border="0" width="100" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="middle">

</tr>
</table>
</center>
</div>
<div align="center">
<center>
<table border="0" width="321" cellspacing="0" cellpadding="0" bgcolor="#007518">
<tr>
<td align="center" bgcolor="#008000" width="319">
<FORM NAME="form1">
<font face="Arial" color="#000000" size="3">
Refreshing in <INPUT TYPE="text" SIZE="2" NAME="clock">
seconds</font>
</FORM></td>
</tr>
</table>
</center>
</div>
</body>
</html>