Hi Steven
Thanks for the reply. I included TiltViewer as an iFrame in my Silex web site. I made some changes in the gallery.xml file and index.html file. Following are the changes made in the index.html file:
</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");
// XML GALLERY OPTIONS
// To use local images defined in an XML document, use this block
//fo.addVariable("useFlickr", "false");
fo.addVariable("xmlURL", "gallery.xml");
fo.addVariable("maxJPGSize","600");
//GENERAL OPTIONS
//fo.addVariable("useReloadButton", "false");
fo.addVariable("columns", "4");
fo.addVariable("rows", "4");
// END TILTVIEWER CONFIGURATION OPTIONS
fo.addParam("allowFullScreen","true");
fo.write("flashcontent");
</script>
</body>
</html>
changes made in the gallery.xml file
==========================
<tiltviewergallery>
<photos>
<photo imageurl="media/Pratrive_Artwork/thumb/DSC_5790.jpg" linkurl="media/Pratrive_Artwork/full-sized/DSC_5790.jpg">
</photo>
<photo imageurl="media/Pratrive_Artwork/thumb/DSC_5793.jpg" linkurl="media/Pratrive_Artwork/full-sized/DSC_5793.jpg">
</photo>
</photos>
</tiltviewergallery>
The issue now is that when I load my web page including the iFrame, the gallery pictures does not come from the imageurl included in the gallery.xml file which is defined as "media/Pratrive_Artwork/thumb/" and it shows some random pictures (I guess it is fetching pics somewhere from the internet)
why the gallery is not displaying images from the path defined in the gallery.xml file instead of fetching it from the internet?
Thanks
Pankaj