Slideshow as Component set up issue.
Posted: 21 Mar 2008, 12:58
Hello.. I am trying to get the slideshow as a component example1 working on my server. I already have the regular Imagevue gallery working nicely and wanted to try the slideshow as component feature.
the URL is: http://runwaynews.com/gallery/pagecompo ... mple1.html
It looks like its loading.. then nothing. I created a folder called 'pagecomponent' on the web server and uploaded what was in 'pagecomponent.zip' taken from the ImageVue page describing components. The normal imagevue root directory files were also placed inside 'pagecomponent'
My HTML is:
Any Ideas would be helpful. Might I have a path issue?
Thanks
Anthony
the URL is: http://runwaynews.com/gallery/pagecompo ... mple1.html
It looks like its loading.. then nothing. I created a folder called 'pagecomponent' on the web server and uploaded what was in 'pagecomponent.zip' taken from the ImageVue page describing components. The normal imagevue root directory files were also placed inside 'pagecomponent'
My HTML is:
Code
<DOCTYPE>
<html>
<head>
<script></script>
<title>Slideshow Pagecomponent Example</title>
</head>
<body>
<div id="slideshow">
Slideshow module here
</div>
<script>
var so = new SWFObject("slideshow.swf", "mymenu", "400", "225", "7", "#FFFFFF");
so.addVariable('globalpath','demoimages/');
so.addVariable('autoscale','false');
so.addVariable('minmargin','0');
so.addVariable('startimage','false');
so.addVariable('backimage','false');
so.addVariable('framewidth','false');
so.addVariable('framecol','000000');
so.addVariable('innerframewidth','false');
so.addVariable('frameshadow', 'false');
so.addVariable('transition', 'fade');
so.addVariable('sfx', 'false');
so.addVariable('audio', 'false');
so.addVariable('showmaincontrols', 'false');
so.addVariable('altcontrols', 'false');
so.addVariable('imagepopinfo', 'false');
so.addVariable('showpreloader', 'false');
so.addVariable('showaltpreloader', 'false');
so.addVariable('showtimer', 'false');
so.addVariable('displayimageindex', 'false');
so.addVariable('displayname', 'false');
so.write("slideshow");
</script>
</body>
</html>Thanks
Anthony