Topic: Tiltviewer immages do nt show on my website
I have not found a solution to this problem on this forum yet. Any help will be deeply appreciated.
I created a gallery with a Tiltviewer plugin for Adobe Lightroom 3. All of the files created were uploaded to my site's server. I have followed the instructions on the Embedding TiltViewer in an existing HTML page and copy pasted the HTML code to my page. When I click on the index.html file on the server, the photos can be seen along with the custom settings as background color, gallery size, etc. However, when I view the page, only the navigation arrows show up. I am new to HTML so I am not sure what part of the code points to my images. Below is the code embedded on my page. Please let me know what I am doing wrong. Thanks!
<?xml version="1.0" encoding="UTF-8"?>
<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Page Title</title>
<script type="text/javascript" src="swfobject.js"></script>
<style type="text/css">/* hide from ie on mac \*/html {height: 100%;overflow: hidden;}
#flashcontent {height: 100%;}
/* end hide */
body {height: 100%;margin: 0;padding: 0;color:#000000;font-family:sans-serif;font-size:40;}
a {color:#cccccc;}
</style>
</head>
<body>
<div id="flashcontent">TiltViewer requires JavaScript and the latest Flash player. <a href="http://www.macromedia.com/go/getflashplayer/">Get Flash here.</a></div>
<script type="text/javascript">
var fo = new SWFObject("TiltViewer.swf", "viewer", "100%", "100%", "9.0.28", "#000000");
fo.addVariable("useFlickr", "false");
fo.addVariable("maxJPGSize","1300");
//GENERAL OPTIONS
fo.addVariable("useReloadButton", "false");
fo.addVariable("columns", "3");
fo.addVariable("rows", "3");
fo.addVariable("frameColor", '0x2D221C');
fo.addVariable("backColor", '0x8A6855');
fo.addVariable("bkgndInnerColor", '0x2D221C');
fo.addVariable("bkgndOuterColor", '0x000000');
fo.addVariable("linkLabel", "Click to follow link");
fo.addParam("allowFullScreen","true");
fo.write("flashcontent");
fo.addVariable("useFlickr", "false");
fo.addVariable("xmlURL", "gallery.xml");
fo.addVariable("maxJPGSize","640");
</script>
</body>
</html>