Hi everyone,
I am a graphic designer who has been put into the role of a web designer. I've learned flash/html/some AS, but know absolutely nothing about php.
My question is this:
I'm trying to use a flash file of an image slideshow made by another developer. The images aren't placed in the timeline of the flash movie, but are instead located in a file folder on the website's server.
The actionscript uses a references a php file, which in turn references the image folder to draw from:
images_xml = new XML();
images_xml.ignoreWhite = true;
images_xml.onLoad = parse;
images_xml.load("xml_gallery1.php");
stop();
Now, I'm trying to use that same flash file for a sister site, employing new images, but i can't seem to get the php file to properly reference my new file with images.
For a bit of clarification, the first three lines in the php file say:
$rootdir = ' ';
$imagesdir = 'images/front';
$basedir = $rootdir.$imagesdir;
I have made sure that my new file is called "front" and is located in the image directory, but no dice...
Also, when i drag the entire current working site onto my local drive, the flash slideshow draws a blank on images, and is no longer able to reference them. This leads me to believe it's a confusion with the paths, but since I have no idea how php works, i thought maybe someone more experienced/talented/awesome than me could shed some light on this.
Sorry for the massively long first post, but I'm happy to finally join the boards here!
Thanks in advance!
I am a graphic designer who has been put into the role of a web designer. I've learned flash/html/some AS, but know absolutely nothing about php.
My question is this:
I'm trying to use a flash file of an image slideshow made by another developer. The images aren't placed in the timeline of the flash movie, but are instead located in a file folder on the website's server.
The actionscript uses a references a php file, which in turn references the image folder to draw from:
images_xml = new XML();
images_xml.ignoreWhite = true;
images_xml.onLoad = parse;
images_xml.load("xml_gallery1.php");
stop();
Now, I'm trying to use that same flash file for a sister site, employing new images, but i can't seem to get the php file to properly reference my new file with images.
For a bit of clarification, the first three lines in the php file say:
$rootdir = ' ';
$imagesdir = 'images/front';
$basedir = $rootdir.$imagesdir;
I have made sure that my new file is called "front" and is located in the image directory, but no dice...
Also, when i drag the entire current working site onto my local drive, the flash slideshow draws a blank on images, and is no longer able to reference them. This leads me to believe it's a confusion with the paths, but since I have no idea how php works, i thought maybe someone more experienced/talented/awesome than me could shed some light on this.
Sorry for the massively long first post, but I'm happy to finally join the boards here!
Thanks in advance!