Topic: loading svManager created gallery from flash
Hi,
I am working on a flash website that loads a SV gallery using the following code provided by AirTight.
import com.airtightinteractive.apps.viewers.simpleViewer.Options;
_global.SVStageWidth = 480;
_global.SVStageHeight = 320;
function loadGallery(galName){
_root.xmlDataPath = galName;
mcLoader.loadMovie("viewer.swf");
}
loadGallery("gallery.xml");
That works fine as long as my xml is in the root of the website. Using svManager, galleries get created inside of the svmanager folder, knowing this, I changed the path in the loadGallery () to
loadGallery("svManager/g1/gallery.xml");
Unfortunately this creates a gallery that consists of white X's. Has anyone sucessfully loaded xml files from flash that are not in the root of the website?
Thank you