Ver Mensaje Individual
  #8 (permalink)  
Antiguo 20/09/2004, 14:19
neo_dac
 
Fecha de Ingreso: marzo-2003
Mensajes: 27
Antigüedad: 21 años, 8 meses
Puntos: 0
Hola caricatos.

Encontré esto en la página de nokia.es:

Código:
// CONFIG VARIABLES
var src = "http://www.nokia.es/checkM8/imaging.swf"; // Flash src
var transparent = "transparent"; // It can be "transparent" or "opaque"
var menu = false;
var flashvars = "clickTag=http://www.nokia.es/imaging/index_idcm8.html";
var top = 0;
var left = 0;
var width = 754;
var height = 810;
var duration = 10000; // In miliseconds


// CHECK M8 CLASS

function checkM8()
{
	var content = document.body.innerHTML;
	content = content +	'<div id="checkm8" style="position:absolute;top:'+top+'px;left:'+left+'px;z-index:900;"><object id="checkflash" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+width+'" height="'+height+'"><param name="movie" value="'+src+'"><param name="wmode" value="'+transparent+'"><param name="menu" value="'+menu+'"><param name="flashvars" value="'+flashvars+'"><param name="quality" value="high"><embed id="checkflash" flashvars="'+flashvars+'" src="'+src+'" quality="high" menu="'+menu+'"  pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed></object></div>';
	document.body.innerHTML = content;
	closeTimeout = setTimeout("closeCheck()",duration);
}

function closeCheck()
{
	clearTimeout(closeTimeout);
	var check = document.getElementById("checkM8");
	var movie = window.document.checkflash;
	if(movie.getVariable("active") == "true")
	{
		document.location.href = "http://www.nokia.es/imaging/index_idcm8.html";
	}
	
	//var sky = document.getElementById("sky");
	check.style.visibility = "hidden";
	//sky.style.visibility = "visible";
	//var skyflash = window.document.skyflash;
	//skyflash.Play();
}
En el body para que funcione se pone onload="checkM8()"

No se si te puede servir.