These forums are provided for community interactions only. For official support please submit a support ticket.
You are not logged in.
You are missing the "base" parameter. You need to set it to a single period. This is how you would do it in JavaScript:
base = '.'
depending, of course, on where you put it.
-Tim
Offline
The purpose of the "base" parameter is to tell FlashPlayer to look for files in the directory of the SWF, not the directory of the HTML/PHP file. When your slideshow is a different folder (which it will always be in WordPress), you need this parameter.
Exactly *how* you add it depends on how you are embedding it. Therefore, I really can't say. If you are using our JavaScript to embed the slideshow, see here:
http://wiki.slideshowpro.net/SSPlr/Tips … MLDocument
If you are using the kimili WP plug in, you'd do it like so:
[ kml_flashembed movie='/my_galleries/gallery3/loader.swf' height='500' width='500' base='.' allowfullscreen='true' wmode='transparent'/]
Offline
I think you can use relative pathing... I'm honestly not sure. I think it would be a pain because of WordPress, but I suppose you'd always know the URL you were at... I think absolute pathing is a lot easier. Your mileage may vary, as we say.
-Tim
Offline
You have a syntax error in your code.
You are missing a comma after the "base" parameter. It should look like this:
params: {
base: ".",
bgcolor: "#000000",
allowfullscreen: "true"
},Offline