Tema: Macro
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/11/2012, 11:55
Avatar de djaevi
djaevi
 
Fecha de Ingreso: marzo-2007
Ubicación: Moreno, Buenos Aires
Mensajes: 400
Antigüedad: 17 años, 2 meses
Puntos: 47
Respuesta: Macro

Podes probar asi decime si te sirve:

Código Javascript:
Ver original
  1. <script type="text/javascript">
  2. INDICE = 0;
  3. DURACION = 2; // Segundos
  4. PAGINAS = ["http://www.google.com","http://www.hotmail.com","http://www.wikipedia.org","http://www.forosdelweb.com"];
  5. function cambiaUrl() {
  6.     if (INDICE == PAGINAS.length) {
  7.         INDICE = 0;
  8.     }
  9.     window.open(PAGINAS[INDICE],"_BLANK");
  10.     INDICE ++;
  11.     setTimeout("cambiaUrl()",DURACION * 1000);
  12. }
  13. </script>

Código HTML:
Ver original
  1. <body onload="cambiaUrl();">