Hola a todos, resulta que un cliente me entrega y me dice que le agrege una vista 360 de un hotel en su pagina, el problema es que la pagina es flash 100% y los archivos que el cliente me entrega son llamados desde un html, lo que quiero hacer es llamar el swf que hace la vista 360 mediante la clase loadMovie pero me sale error. Adjunto el codigo html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Virtual Tour</title>
</head>
<body leftMargin="0" topMargin="0" rightMargin="0" bottomMargin="0">
<script type="text/javascript" src="swfObject.js"></script>
<div id="flashcontent">
To view virtual tour properly, Flash Player 9.0.28 or later version is needed.
Please download the latest version of <a href="http://www.adobe.com/go/getflashplayer" target="_blank">Flash Player</a> and install it on your computer.
</div>
<script type="text/javascript">
var so = new SWFObject("PWViewer.swf", "sotester", "400", "300", "9.0.0", "255,255,255,255");
so.addParam("allowNetworking", "all");
so.addParam("allowScriptAccess", "always");
so.addParam("allowFullScreen", "true");
so.addParam("scale", "noscale");
so.addVariable("configFileSize", "4.795");
so.addVariable("zipResSize", "39.696");
so.addVariable("sceneFilesSize", "496.880");
so.addVariable("base", "quinta real/");
so.addVariable("lwImg", "resources/waiting.gif");
so.addVariable("lwBgColor", "255,255,255,255");
so.addVariable("lwBarBgColor", "255,45,91,141");
so.addVariable("lwBarColor", "255,130,170,215");
so.addVariable("lwBarBounds", "100,146,200,8");
so.addVariable("lwShowLoadingPercent", "true");
so.addVariable("iniFile", "config_quinta real.bin");
so.addVariable("progressType", "0");
so.addVariable("swfFile", "");
so.addVariable("href", location.href);
so.write("flashcontent");
</script></body>
</html>
Les pido ayuda en: Como adaptar ese codigo html a as2 y ver la vista 360 desde loadmovie en la pagina flash 100%???
Otra pregunta la vista 360 utiliza SWFObject la pagina donde esta el swf padre que llamara a la vista 360 tambien debe utilizar SWFObject?? pues en el momento esa pagina utiliza AC_RunActiveContent.js
Muchas gracias a todos por su ayuda y por su tiempo, hasta luego.