Topic: multiple_gallery and svManager image path error
I have SimpleViewerPro and svManager installed.
My "Path from web root" in admin is like this:
/galleries/2004/
/galleries/2005/
/galleries/2006/
etc...
I am getting error in flash when compiling multiple_galleries.fla that says:
Error opening URL 'file:/galleries/images/picture1.jpg'
How do I fix the path so that it looks in /galleries/XXXX/images/picture1.jpg where XXXX is the taken from "Path from web root". It seems like it isn't doing what it should. If it used "Path from web root" and appended "/images" to that it should work, but the path in gallery.xml is simply "images/". I have rebuilt galleries with no luck.
The xml file is named 'gallery.xml' and 1 exists in each years folder. svManager creates it there and updates it there. So to use the multiple_galleries example from SimpleViewerPro, I changed the xml path to:
_root.xmlDataPath = galleryId +"/gallery.xml";
That seems to work fine. The xml file gets loaded, but when it tries to get the images, it can't because the xml file has:
imagePath = "images/" thumbPath = "thumbs/"
It should be:
imagePath = "2004/images/" thumbPath = "2004/thumbs/"
imagePath = "2005/images/" thumbPath = "2005/thumbs/"
etc...
Any idea how I fix this? Thanks for ideas on what I did wrong?
Chris