Search…

X3 Photo Gallery Support Forums

Search…
 
klemmi86
Topic Author
Posts: 3
Joined: 19 Dec 2007, 15:27

images don't open in slideshow-mode

19 Dec 2007, 15:43

hi guys, at first: SORRY FOR MY ENGLISH! I'm not familiar with this language :-)

i embedded imagevue into a html-page. i included javascript into the head like this:
Code
 <script type="text/javascript" src="http://www.daniel-klemm.com/gallery/javascript/swfobject_source.js"></script>
and in the body i wrote:
Code
 <div id="imagevue"; style="height: 550px;">
   www.photo.gallery imagevue gallery module

<script type="text/javascript">
   var so = new SWFObject("http://www.daniel-klemm.com/gallery/imagevue.swf", "imagevue", "100%", "100%", "6", "#1a1a1a");
   so.addVariable("backimage", "false");
   so.addVariable("globalpath", "http://www.daniel-klemm.com/gallery/");
   so.write("imagevue");
</script>
	</div>
when i open this site: http://www.daniel-klemm.com/test/gallery.html
all the thumbs are displayed but when i click some they don't open in large.

http://www.daniel-klemm.com/gallery/ is the same gallery but this works.. can you help me?

thanks!
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

20 Dec 2007, 02:56

I'm not 100% sure why it's not working, but can you please try to change the code slightly in your gallery.html file:
Code
var so = new SWFObject("../gallery/imagevue.swf", "imagevue", "100%", "100%", "7", "#1a1a1a");
so.addVariable("globalpath", "../gallery/");
so.write("imagevue");
I have set relative paths there instead of the absolute paths you were using. I have also removed the backimage=false setting just to avoid any confusion while testing. Please reply when you have made the changed so I can look into it ...
 
klemmi86
Topic Author
Posts: 3
Joined: 19 Dec 2007, 15:27

20 Dec 2007, 07:34

ok, its edited now the way you told me

new adress is: http://www.daniel-klemm.com/gallery.html

a new process starts when clicking on a thumb but nothing can be seen. it seems to me the gallery-view is still active..

thanks in advance
 
zella
Posts: 11
Joined: 05 Dec 2007, 13:59

20 Dec 2007, 16:38

As you can see, I have the same problem...

viewtopic.php?t=2636
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

28 Dec 2007, 03:24

klemmi86 wrote:ok, its edited now the way you told me

new adress is: http://www.daniel-klemm.com/gallery.html

a new process starts when clicking on a thumb but nothing can be seen. it seems to me the gallery-view is still active..

thanks in advance
You changed the code as I said, but you also changed the location of your html file. Now it is gallery.html instead of test/gallery.html. Change your code:
Code
<script type="text/javascript">
  var so = new SWFObject("gallery/imagevue.swf", "imagevue", "100%", "100%", "7", "#1a1a1a");
so.addVariable("globalpath", "gallery/");
so.write("imagevue");
</script>
 
klemmi86
Topic Author
Posts: 3
Joined: 19 Dec 2007, 15:27

29 Dec 2007, 04:14

hmm just changed my gallery.html in http://daniel-klemm.com/gallery.html
but there's no slideshow when clicking on a thumb..

i don't know what could be wrong now, is it because of an div container the script is in or what du you think?

best regards
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

05 Jan 2008, 01:19

I'm not 100% sure, but there is a range of possibilities. In your sourcefile, you should keep reference to a configuration file like in the original document.
Code
so.addVariable("configfile", "config.ini");
Put the code above in your html file, above the "so.write(..."

Also, in your config file http://daniel-klemm.com/gallery/config.ini, you have "content = false". Try setting it to "contentfolder = content/".