PDA

View Full Version : Please help with SWF embedding problem.



flynnyfalcon
21 Mar 2011, 08:11 AM
First of all, I'm quite new and naive to HTML

flynnyfalcon
21 Mar 2011, 08:11 AM
<menu name="product" id="product" scrollbar="yes">
<title>photographer | product</title>
<gallery>
<img file="images/Product/Product01.jpg" w="444" h="565">
<title>photographer | product</title>
<description>Every image supports a title and short description. You can combine both a title and description or do one or the other or none at all. You can also include a link to an external link.
</description>
</img>
<img file="images/Product/Product02.jpg" w="444" h="565"/>
<img file="images/Product/Product03.jpg" w="444" h="565"/>
<img file="images/Product/Product04.jpg" w="444" h="565"/>
<img file="images/Product/Product05.jpg" w="848" h="565"/>
<img file="images/Product/Product06.jpg" w="800" h="565"/>
<img file="images/Product/Product07.jpg" w="708" h="350"/>
</gallery>
</menu>

<menu name="personal" id="personal" scrollbar="yes">
<title>photographer | personal</title>
<gallery>
<img file="images/Personal/Personal01.jpg" w="841" h="565">
<title>photographer | personal</title>
<description>Every image supports a title and short description. You can combine both a title and description or do one or the other or none at all. You can also include a link to an external link.
</description>
</img>
<img file="images/Personal/Personal02.jpg" w="827" h="565"/>
<img file="images/Personal/Personal03.jpg" w="898" h="565"/>
<img file="images/Personal/Personal04.jpg" w="366" h="565"/>
<img file="images/Personal/Personal05.jpg" w="850" h="565"/>
<img file="images/Personal/Personal06.jpg" w="389" h="565"/>
<img file="images/Personal/Personal07.jpg" w="400" h="565"/>
<img file="images/Personal/Personal08.jpg" w="832" h="565"/>
<img file="images/Personal/Personal09.jpg" w="389" h="565"/>
<img file="images/Personal/Personal10.jpg" w="400" h="565"/>
</gallery>
</menu>

<menu name="vr" id="vr" scrollbar="no">
<title>photographer | vr</title>
<gallery>
<img file="images/VR/Foyer.swf" w="640" h="480">
</img>
</gallery>
</menu>

<menu name="clients" id="clients" scrollbar="no">
<title>photographer | clients</title>
<gallery>
<img file="images/clients.jpg" w="1400" h="600">
</img>
</gallery>
</menu>

<menu name="contact" id="contact" scrollbar="no">
<title>photographer | contact</title>
<gallery>
<img file="contact.swf" w="1400" h="600">
</img>
</gallery>
</menu>

</settings>
[/I]

*******************************************************************

The following is the associated VR.html coding.


*******************************************************************

_VR.html

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<title>vr</title>
<script language="javascript" type="text/javascript" src="js/swfIN.js"></script>
<script language="javascript" type="text/javascript" src="js/swfaddress.js"></script>
<style type="text/css">
<!--
body {margin:0px; padding:0px; background-color:#1a1a1a; color:#DDDDDD}
title {color:#FFFFFF; font-family:Georgia, "Times New Roman", Times, serif; font-size:20px; font-weight:bold; letter-spacing:1px }
p {color:#DDDDDD; font-family:Verdana, Geneva, sans-serif; font-size:12px; }
red {color:#F00}
-->
</style>
</head>
<body onLoad="window.document.flashMovie.focus();">

<div id="div_seo">

<h1>SEO SEARCH TERMS ABOUT THE VR GALLERY</h1>
<p>Every image supports a title and short description. You can combine both a title and description or do one or the other or none at all. You can also include a link to an external link.</p>
<a href="index.html" target="_self">chris neylon</a><br>
<a href="_exterior.html" target="_self">exterior</a><br>
<a href="_interior1.html" target="_self">interior1</a><br>
<a href="_interior2.html" target="_self">interior2</a><br>
<a href="_interior3.html" target="_self">interior3</a><br>
<a href="_landscape.html" target="_self">landscape</a><br>
<a href="_product.html" target="_self">product</a><br>
<a href="_personal.html" target="_self">personal</a><br>
<a href="_vr.html" target="_self">ACTIVE DEN PORTFOLION</a><br>
<a href="_clients.html" target="_self">clients</a><br>
<a href="_contact.html" target="_self">contact</a><br>

</div>

<script type="text/javascript">

var s = new swfIN("sideways.swf", "flashMovie", "100%", "100%");
s.hideSEO("div_seo");

s.scrollbarAt(975, 765);

s.useExpressInstall("xi.swf", "100%", "100%");
//s.detectRedirect( [10] , "noflash.htm");


//s.addVar("xml_file", "xml/settings.xml");
//s.addVar("deep", swfIN.utils.getQueryParam("deep"));
s.addVar("deep", "images/VR/");

s.addParam("bgcolor", "#ffffff");
s.addParam("menu", "true");
s.addParam("allowFullScreen", "true");
s.addParam("swLiveConnect", "true");
s.addParam("allowScriptAccess", "always");

s.useSWFAddress();
s.useMacMousewheel();

s.write();

</script>

</body>
</html>

*******************************************************************