Automatización

Hola.
¿  Como puedo automatizar esto en el arranque de la página?
Gracias
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
    <?php
if ($_POST){
//Incrementamos el valor
$conta = $_POST["conta"] + 10;
}
else{
//Valor inicial
$conta = 0;
}
?>
</head>
<body>
 <form name="f1" action="<?=$_SERVER["PHP_SELF"]?>" method="post">
<input type="hidden" name="conta" value="<?=$conta?>">
<input type="submit" value="Incrementar">
</form>
 <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
 codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
  width=<?=$conta?> height=<?=$conta?>>
  <param name="movie" value="archivo.swf" />
  <param name="quality" value="high" />
  <embed src="archivo.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
  type="application/x-shockwave-flash" width=<?=$conta?> height=<?=$conta?>></embed>
</object>
</div></td>
</tr>
</table>
 <?php
print "$conta"
?>
</body>
</html>

1 Respuesta

Respuesta
1
Ok sería algo como lo siguiente pero con JavaScript
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
       <title>Title here!</title>
       <script type="text/javascript">
             var cont = 0;
              function AumentarVideo() {
                 if (cont < 700) {
                  document.getElementById("EmbebedVideo").width = cont;
;                  document.getElementById("EmbebedVideo").height= cont;
                  cont=cont+100
                  setInterval(" AumentarVideo()", 5000);;
                  }
           }
       </script>
</head>
<body onLoad="AumentarVideo()">
<form name="f1" action="<?=$_SERVER["PHP_SELF"]?>" method="post">
<input type="hidden" name="conta" value="<?=$conta?>">
<input type="submit" value="Incrementar">
</form>
 <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
 codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
  width=<?=$conta?> height=<?=$conta?>>
  <param name="movie" value="archivo.swf" />
  <param name="quality" value="high" />
  <embed id="EmbebedVideo" src="archivo.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
  type="application/x-shockwave-flash" width=0 height=0></embed>
</object>
</div></td>
</tr>
</table>
</body>
</html>

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas