Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Photo Gallery Using XML And Flash



Hello, I have been try several tutorials on creating Photo Galleries in flash, howver i have been running into some problems along the way. This tutorial is exactly what i have been looking for--> http://www.kirupa.com/developer/mx20...otogallery.htmHowever, when attempting to open the Partial FLA file provided an error message appears in Flash stating : "Unexpected File format" I am not sure why this is appearing..? I am using Flash MX Version 6.0. I have tried opening all of the FLA files provided off this tutorial.Any help/suggestions are greatly appreciated! thanks in advance-ryan



KirupaForum > Flash > Flash 8 (and earlier) > Flash MX
Posted on: 04-24-2005, 02:44 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Photoshop CS2: Web Photo Gallery: Flash - Gallery 1
I'm interested to know the code that Adobe Uses with one of their Web Photo Gallery (Photoshop CS2) - it's the one called "Flash - Gallery 1".

Here's a sample of it:

http://www.newrisedesigns.com/charlie/060416/

What I'm interested in, is how to do the thumbnails...when you roll over them - they move all of the other thumbnails around - and also show the name of the external jpg file.

Anyone know or have the source code to do that? What about any kind of tutorial out there that can do this?

Help please?

Flash: Photo Gallery
Before I attempt to go off and build this myself, I thought to see if something is already available or close to it.

I am looking for a for a Flash photo gallery with audio. (See examples) I discovered some software (see software) that does almost what I want. However, it’s Shockwave and its branded PhotoJam. Even though it would make creating a photo gallery almost effort less its just too cookie cutter. I am looking to create something more like the msnbc flash galleries. I would like to create a template that I can drop photos and a sound clip into the Flash document with minor adjustments each time I create a gallery. I was hoping that someone could give some direction or know of a Flash source file that I can modify to create this.

Flash photo gallery examples:
http://www.msnbc.com/modules/ps/0105...ica/splash.asp
http://www.msnbc.com/c/0/24/9/ssMain...09&sld=18&v=28
http://www.msnbc.com/c/0/16/454/ssMain.asp?fmt=Child

Software:
http://www.shockwave.com/sw/downloads/photojam/

Thanks,

Joel

Flash Photo Gallery
hi.

i'll be making a photo gallery soon with hundreds of pictures. is there a fast way to make some sort of template with some AS that would make the job a little eaisier?

i plan to have two copies of the same image on each flash page - one copy for the full size and another scalled down for the thumb and when the mouse rolls over, it displays the full size.

Flash Photo Gallery
hi.

i'll be making a photo gallery soon with hundreds of pictures. is there a fast way to make some sort of template with some AS that would make the job a little eaisier?

i plan to have two copies of the same image on each flash page - one copy for the full size and another scalled down for the thumb and when the mouse rolls over, it displays the full size.

Flash Mx Photo Gallery - How Do They Do That?
http://www.irinagavrich.com/

I was checking out the photo gallery on this website and I'm interested in doing this somehow, but I'm not sure how. I use Flash MX. I'm interested in being able to scroll through the images (how they slide automatically) and then being able to click on one and it opens still having the sliding menu there. Anyone have any ideas on this? Please advise and thanks!!!

-Foochuck

Flash Photo Gallery
I tried making a photo gallery with the tutorial from www.kirupa.com it doesn';t work though heres my action script, can anyone tell me what i did wrong?

// variables ------------------------------------------
// put the path to your pics here, include the slashes (ie. "pics/")
// leave it blank if they're in the same directory
this.pathToPics = "http://www.thozeguys.com/pics";
// fill this array with your pics
this.pArray = ["DSCF0019.JPG", "DSCF0022.JPG", "DSCF0027.JPG", "DSCF0028.JPG", "DSCF0029.JPG", "DSCF0031.JPG", "DSCF0033.JPG", "DSCF0035.JPG", "DSCF0038.JPG", "DSCF0049.JPG", “DSCF0042.JPG”, “DSCF0052.JPG”, “DSCF0053.JPG”, “DSCF0055.JPG”, “DSCF0057.JPG”, “DSCF0062.JPG”, “DSCF0068.JPG”, “DSCF0070.JPG”, “DSCF0071.JPG”];
this.fadeSpeed = 20;
this.pIndex = 0;
// MovieClip methods ----------------------------------
// d=direction; should 1 or -1 but can be any number
//loads an image automatically when you run animation
loadMovie(this.pathToPics+this.pArray[0], _root.photo);
MovieClip.prototype.changePhoto = function(d) {
// make sure pIndex falls within pArray.length
this.pIndex = (this.pIndex+d)%this.pArray.length;
if (this.pIndex<0) {
this.pIndex += this.pArray.length;
}
this.onEnterFrame = fadeOut;
};
MovieClip.prototype.fadeOut = function() {
if (this.photo._alpha>this.fadeSpeed) {
this.photo._alpha -= this.fadeSpeed;
} else {
this.loadPhoto();
}
};
MovieClip.prototype.loadPhoto = function() {
// specify the movieclip to load images into
var p = _root.photo;
//------------------------------------------
p._alpha = 0;
p.loadMovie(this.pathToPics+this.pArray[this.pIndex]);
this.onEnterFrame = loadMeter;
};
MovieClip.prototype.loadMeter = function() {
var i, l, t;
l = this.photo.getBytesLoaded();
t = this.photo.getBytesTotal();
if (t>0 && t == l) {
this.onEnterFrame = fadeIn;
} else {
trace(l/t);
}
};
MovieClip.prototype.fadeIn = function() {
if (this.photo._alpha<100-this.fadeSpeed) {
this.photo._alpha += this.fadeSpeed;
} else {
this.photo._alpha = 100;
this.onEnterFrame = null;
}
};
// Actions -----------------------------------------
// these aren't necessary, just an example implementation
this.onKeyDown = function() {
if (Key.getCode() == Key.LEFT) {
this.changePhoto(-1);
} else if (Key.getCode() == Key.RIGHT) {
this.changePhoto(1);
}
};
Key.addListener(this);

Flash Photo Gallery
I am using MX and have searched the tutorials looking for ways to create a flash photo gallery. Does anyone have some sample code or tips on how to do this?

Flash Photo Gallery
Hey all,

I created a Flash photo gallery that dynamically loads the images and I have come to a road block. I need it to be set up where when you click on a thumbnail the corresponding full size image shows up in the "main" movie clip. The thumbnails are named correspondingly to the full size images (Thumb: thumbs/1.jpg Full: images/1.jpg). No matter how I set it up, I can't seem to get my thumbnail to be clickable. Currently my AS looks like this :
count = "2";
number_of_images = count;
for (i=0; i<number_of_images; ++i) {
var currentImage = attachMovie("image", "image"+i, i+1);
currentImage._xscale = currentImage._yscale=100;
if (i<=4) {
currentImage._y += 320;
currentImage._x += 75*i+75;
}
if (i>=5) {
currentImage._y += 395;
currentImage._x += 75*i-300;
}
currentImage.loadMovie(i+".jpg");
}

The script I think you would use to make the thumbnails clickable and for when you click the thumbnail the main image to show up is :
currentImage.onPress = function() {
Main.loadMovie(i+".jpg");
};

But obviously that isn't working. If you can help at all please post here or message me on AIM at r0ller rebel. All help is greatly appreciated.

Thanks,
Jay

Flash Photo Gallery - Help
I'll explain the overall problem and then if you have ideas on either Photoshop or Flash solutions please let me know.

Problem:
create a photo gallery with:
---side thumbnail menu
---top day / special events menu linking to galleries
---control panel with forward / back / stop/ auto slide buttons
---save High-res photo ( print version of photo )

Solution Option 1:
Photoshop created gallery based on autocreation feature in Photoshop. The Photoshop option does provide thumbnail view / big view, but doesn't provide the control panel with forward / back / stop/ auto slide buttons or a place to link to high res pictures for print download.
Is there a way to add a control panel using javascript or PHP or by modifying the Photoshop template file? Would you know how to do / add this? Have you worked with the auto photo gallery function in photoshop?


Solution Option 2:
Flash gallery based on http://linkshare.org/flashgallery which is by http://chasebrammer.com/comps
( I chose this option because I think it would make changing the GUI simpler but other problems were created! )

Repeated errors:
- accessing galleries.phpÂ_ error message says "error during read of ( gallery name )"
Seems to happen after I've gone into "owner comments" to add comments to photos in the gallery. When I go back to update gallery error message appears and I can't access the gallery.

- accessing comments.php no comments appear in the text boxes. http://www.linkshare.org/flashgaller...?dir=italytrip
If I use the flat file option, are my comments not going to appear in the text boxes in the comments.php page? If so, it seems that I would have to reinsert comments everytime I opened the comments.php page?

- accessing the gallery frontend http://www.linkshare.org/flashgallery/ ,the owner comments don't show up but if you post comments then the comments appear but only for the public comments.


Want to change pulldown menu into button menu?
- how add a top menu of 7 days plus 3 special events buttons that link to different galleries. Currently galleries are linked from the pulldown menu but I can't figure out the actionscript code in the Flash source file to put gallery links in the buttons. I do have a Flash source file for the gallery which you can use.

Ideally, the gallery part would work like this: http://www.jsensei.com/jsensei.html

The top day / special event menu would link to the different galleries.

Ack...help?

flashgalleryhelp@linkshare.org

Flash Photo Gallery
please visit this site:
photo gallery
click on 'cars'
and tell me how to create such an album or where i can find a tutorial to create such an album...
thanx a load!

Flash Photo Gallery
Is There A Easy Way Of Creating A Flash Photo Gallery Of Over A Hundred Photo

Flash Photo Gallery
Hi there, I found this photo gallery on this site and modified it to my look. Now when I test it on my computer it works but as soon as I put it in an HTML page it stops working. Can you guys help me figure out what is going because I am a new to action script and dont know enough to see what is wrong. Also the author of the gallery said that it used and external XML file but I dont know how to set up the XML file as he does not include it in the zipped file. Maybe there is a problem in the action script or maybe I need the XML file but I dont know.

Here is a link to the zipped file as it is too large to attach.

http://paratwins.paragliderworld.com/gallery.zip

Also here is what the author sais:


Quote:




reads from GALLERY.XML file a list of directories & gallery names (photos must be in format 0001.jpg, 0002.jpg, etc)and from PLAYLIST.XML info on the Song & Artists (mp3 must be in same directory of flash file, named 0.mp3, 1.mp3, etc). This is a first version, so many features are still incomplete. Drag the tabs to pull out the panels.




All help would be greatly appreciated. Thanks

Nick

Flash Photo Gallery
Hi Guys,
Where Do I find flash photo gallery.
my requirement is I have 15 photos on every page likewise have 25 pages for now.
Where Do I get the way to manage photos with next and back interaction.
the file should not be heavy even, coz there will be a plenty of fotos.
each foto is 130*130 in size!!!

Ram

Flash Photo Gallery
Hi
I have tried creating one but I'm stuck is there anyone out there who could send me a template or something?

Thanks

Flash Photo Gallery
I have flash mx 2004. i want to be able to click on one thumbnail photo on the left, one of a series, and have the photo appear on the right, enlarged. and when i click on another thumbnail, for it to be replaced by the new selection, and at the same time, a caption at the bottom to change with each new selection as well.
how would I do this?
thx in advance.
me.

Flash Photo Gallery
Hi,

Planning to build a nice scrolling photo gallery, any suggestions? sample application? Tutorials?

thanks in advance.
hammer

Flash Photo Gallery
I'm trying to make a flash photo gallery for my website, but I don't know how to do it manually. I'm trying to find a program that will let me make just a simple (but nice looking) layout, looking something like this:


Where the white squares are the photo icons and when you click them, they will enlarge. I want to be able to save a gallery and open it back up to edit whenever and drag and drop pictures wherever I want. I also dont want to have to make all the thumbnails and stuff, so I also need it to do it automatically. It would also be cool if I could mouse over the small picture and it would enlarge it a little to give kind of a preview.

Flash Photo Gallery
hey guys is there such a thing as a flash photogallery without an xml file?

cause i want it that we can juste upload pics to the photo folder and they apear in the gallery.

instead of editing the xml file all the time..

Flash Photo Gallery Help
Hi. I'm making a Flash photo gallery with a lot of photos. I want to have corresponding thumbnails for each photo below the photo viewer. The problem is, I want to externally load those files when the thumbnails are clicked. How do I make those thumbnails WITHOUT importing the image itself into Flash?

Also: What are the advantages of making an XML-Based photo gallery?

Thanks a lot,
Sportzguy933

[F8] Flash Photo Gallery
In this tutorial http://www.kirupa.com/developer/mx2004/thumbnails5.htm it explain how to make a Flash Thumbnail Photo Gallery. I am designing a bigger photo gellery based on this code. how do I have the photo gallery to list 5 across and 2 rows. This code is the code that designs the thumbnail movie clip.


function thumbnails_fn(k) {
thumbnail_mc.createEmptyMovieClip("t"+k, thumbnail_mc.getNextHighestDepth());
tlistener = new Object();
tlistener.onLoadInit = function(target_mc) {
target_mc._x = hit_left._x+(target_mc._width+5)*k;
target_mc.pictureValue = k;
target_mc.onRelease = function() {
p = this.pictureValue-1;
nextImage();
};
target_mc.onRollOver = function() {
this._alpha = 50;
thumbNailScroller();
};
target_mc.onRollOut = function() {
this._alpha = 100;
};
};
image_mcl = new MovieClipLoader();
image_mcl.addListener(tlistener);
image_mcl.loadClip(thumbnails[k], "thumbnail_mc.t"+k);
}

Flash Photo Gallery
some time ago i so on the "Flash Related Announcements" an flash application that lets you create a photo gallery that looks like the itunes album gallery as shown bellow.



if some one nows were to buy it let me know. or if you have seen a better slide show made with flash that looks neo concept. please let me know.

Name That Flash Photo Gallery App?
A client of mine would like to create multiple flash photo galleries like the one in this examle:

http://www.photoquestadventures.com/

Im guessing this is some sort of app you can buy.
Anyone know of something similar and where I can purchase?

thanks

Flash XML Photo Gallery
Hi friends,
I have this Photo Gallery with next and previous button which is working like loading images from the XML file.

I want to have a slide show with out next and previous instead of that stop and play. How can it be possible I am not good in programming. Please help.


ActionScript Code:
delay = 500;
function loadXML(loaded) {
    if (loaded) {
        xmlNode = this.firstChild;
        image = [];
        description = [];
        total = xmlNode.childNodes.length;
        for (i=0; i<total; i++) {
            image[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
            description[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue;
        }
        firstImage();
    } else {
        content = "file not loaded!";
    }
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("images.xml");
// ///////////////////////////////////
listen = new Object();
listen.onKeyDown = function() {
    if (Key.getCode() == Key.LEFT) {
        prevImage();
    } else if (Key.getCode() == Key.RIGHT) {
        nextImage();
    }
};
Key.addListener(listen);
previous_btn.onRelease = function() {
    prevImage();
};
next_btn.onRelease = function() {
    nextImage();
};
// ///////////////////////////////////
p = 0;
this.onEnterFrame = function() {
    filesize = picture.getBytesTotal();
    loaded = picture.getBytesLoaded();
    preloader._visible = true;
    if (loaded != filesize) {
        preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
        preloader._visible = false;
        if (picture._alpha<100) {
            picture._alpha += 10;
        }
    }
};
function nextImage() {
    if (p<(total-1)) {
        p++;
        if (loaded == filesize) {
            picture._alpha = 0;
            picture.loadMovie(image[p], 1);
            desc_txt.text = description[p];
            picture_num();
        }
    }
}
function prevImage() {
    if (p>0) {
        p--;
        picture._alpha = 0;
        picture.loadMovie(image[p], 1);
        desc_txt.text = description[p];
        picture_num();
    }
}
function firstImage() {
    if (loaded == filesize) {
        picture._alpha = 0;
        picture.loadMovie(image[0], 1);
        desc_txt.text = description[0];
        picture_num();
    }
}
function picture_num() {
    current_pos = p+1;
    pos_txt.text = current_pos+" / "+total;
}

Flash Photo Gallery?
Anyone seen any examples/tutorials on how to build a photo gallery similar to the one at http://www.danicaracing.com/flashIndex.html? (click on "Photo Finish" link). I'm assuming it incorporates a database and stuff. I've build news systems that function a little like that...with boxes for the news headlines (where each gallery title is), but not sure how to do it for a photo gallery.

Flash XML Photo Gallery
Does anyone know of a simple flash/xml photo gallery editor?
With captions, and ability to upload/delete photos.

Photo Gallery Using XML And Flash
I am working on a Photo Gallery Using XML and Flash… I am using one of the popular tutorials.. it’s great for me… I am a really a beginner in flash and this tutorial has helped me to understand the magic of flash… I need help regarding the displaying the Thumbnails.

The one in source (FLA) and the tutorial explains about scrolling thumbnails. I am really looking for thumbnail to display in grid (just small thumbnail boxes)… can anyone help me please, I really appreciate it, thank you

http://www.kirupa.com/developer/mx2004/thumbnails.htm

Flash Photo Gallery
Hi, ive been trying to make a photo galley in flash like the one in (JMN PHOTOGRAPHY.COM) but i,ve not been able to, please help.

Flash Photo Gallery
Hi,

I'm trying to create a simple photography portfolio in Flash 8, whereby the user clicks on a thumbnail and the image fades up. I have 24 thumnails, so do I need to create 24 different 'fading image' movie clips, or is there an easier way to do this? Is it possible to create one movie clip and then just update the image within it?

I'm quiet a newbie so i might be missing somehting here...

Any help greatly appreciated. David.

Flash Photo Gallery
Hello. I'm looking for a flash template that is highly compatible with browsers that will scan a folder for all pictures and then allow end users to click through them using <<back and next>> Anyone know where I can get this? I'll take a tutorial :)

Flash Photo Gallery
Hi. I'm a graphic designer trying to create an online portfolio. To display my print pieces I would like to have an image gallery with a large photo to the left and text to the right. I would like to have small thumbnails a user can scroll through at the bottom. Something like these:
http://www.gatheringofthevibes.com/2007/gallery
http://www.beneventorussoduo.com/album3/index.html

I bought a template to create this type of gallery unfortunately it uses xml. I am very familiar with flash but the xml file completely throws me and I hope to stay away from it. Any help would be greatly appreciated. Thanks.
Paul

Flash Photo Gallery
Hi,

I'm trying to create a simple photography portfolio in Flash 8, whereby the user clicks on a thumbnail and the image fades up. I have 24 thumnails, so do I need to create 24 different 'fading image' movie clips, or is there an easier way to do this? Is it possible to create one movie clip and then just update the image within it?

I'm quiet a newbie so i might be missing somehting here...

Any help greatly appreciated. David.

HELP With Flash Photo Gallery
I have no clue how to program these flash galleries....My site www.al-burke.com contains a flash web gallery that I purchased online and I have been able to upload it to the site but its says movie not loaded. I have all the neccessary files in place I believe (gallery.xlm, main.html, main.swf) all under a folder. Can anyone please help me out? Thanks

Flash XML Photo Gallery
In this tutorial http://www.kirupa.com/developer/mx2004/thumbnails5.htm it explain how to make a Flash Thumbnail Photo Gallery. I am designing a bigger photo gellery based on this code. how do I have the photo gallery to list 5 pictures it create a new row . This code is the code that designs the thumbnail movie clip with all the thumbs in 1 row.


function thumbnails_fn(k) {
thumbnail_mc.createEmptyMovieClip("t"+k, thumbnail_mc.getNextHighestDepth());
tlistener = new Object();
tlistener.onLoadInit = function(target_mc) {
target_mc._x = hit_left._x+(target_mc._width+5)*k;
target_mc.pictureValue = k;
target_mc.onRelease = function() {
p = this.pictureValue-1;
nextImage();
};
target_mc.onRollOver = function() {
this._alpha = 50;
thumbNailScroller();
};
target_mc.onRollOut = function() {
this._alpha = 100;
};
};
image_mcl = new MovieClipLoader();
image_mcl.addListener(tlistener);
image_mcl.loadClip(thumbnails[k], "thumbnail_mc.t"+k);
}





























Edited: 09/08/2007 at 08:19:43 AM by samuels2921

Photo Gallery (flash 5)
Hi

I've tried the photo gallery tutorial but it won't work on flash 5. I've done everything that it said (and all the suggestions in the forum) but I am unable to view any of the images. Can anyone help or provide me with another photo gallery tutorial?

Cheers

jonnyB

Photo Gallery And Flash 5...
Heya all,

I am trying to get the Photo Gallery tutorial to work with flash 5, and seem to be having some diffaculty with it. First I tried to put in some custom AS, that did not work, so I opened the tut fla and exported it without changing anything and it still did not work. It will open and display the first picture, but will not scroll through the pictures using the arrow keys or the buttons. Is there something is the code that needs to be changed so it will work with Flash 5? I am just curious. I spent all day yesterday trying to get this to work with no luck.

Edit: link to the tutorial... http://www.kirupa.com/developer/mx/photogallery.htm

Thanks a bunch!

Cheers!
-Niann

Flash Photo Gallery: Someone Please Help
I've been at this photo gallery for 2 weeks now and I just about have it working but it has some serious bugs. If you enter a gallery and try to go back it breaks everything loading. I have checked the variables, the asp code, everything and I simply can't figure out what is wrong with this! I'm desparate and about to give up! Can anyone help me?

The gallery is up at www.clublevel.net/gallery.swf
FLA: www.clublevel.net/gallery.fla
photos.asp: www.clublevel.net/gallery/photos.asp
gallery.asp: www.clublevel.net/gallery/gallery.asp

Photo Gallery Using XML And Flash
I've been following this tutorial: Photo Gallery Using XML and Flash

and I don't understand why this isn't working...

It runs fine with images.xml having the original pictures listed, but when I replace with my own JPEG images - nothing shows up!

Here is my XML file:
http://www.deuspunk.com/images.xml
Here is my Gallery:
http://www.deuspunk.com/xml_photogallery_user_mx.html

Original pictures load fine, but mine don't! I've tried everything I could think of, please help!

Photo Gallery Using XML And Flash
Hi All!

I had used the tutorial "Photo Gallery Using XML and Flash" to build my own Web photo Gallery.

(http://www.kirupa.com/developer/mx2004/xml_flash_photogallery.htm)

I am new in XML and Flash and I need help.

My problem is:

I have 5 different galleries on my web page, located on 5 different URLs.

What I want to do is use 5 different IMAGES.XML files stored on each Gallery Directory and pass the URL to the XML code that must retrieve the file (IMAGES.XML) from there.

In other words, I want to use only one SWF file and pass to it the URL where IMAGES.XML is located in order to retrieve the photo file list. (Using the code from the tutorial above)

How can I do that?



Thanks

Marcelo

Photo Gallery Using XML And Flash
I am using the tutorial on this site for: Photo Gallery Using XML and Flash.

It is a great gallery, but all the pictures must already be size 300x200 for it to look nice. I thought there was a way to force a loaded movie clip (or image in this case) to be a certain size?

Does anyone know how to do this?

Thanks,
andrea

XML And Flash Photo Gallery
HI everyone,

I really need help on this !!! I tried to follow all the step of the XML for the Flash Photo Gallery, It worked after I created an new example. However, when I applied it into my client's flash web page the picture won't load as usual >< I have no idea why and the next button won't go further but the previous could go back without any picture loaded >< could anyone tell why would it be??

the stucture of my clien't web is main preloading page to load the movie clip in a folder then in this movie clip i would like to apply the Photo Gallery in it but then the pictuse which I save as the same folder is doesn't work ><

Help me please???
Hebee

XML Flash MX Photo Gallery Help
so i found a great XML flash mx photo gallery with comboboxes and comment sections with thimbnails. i am trying to implement the gallery to my sites needs.

problem 1: i think i must have some sort of root/parent problem because when i load the mc gallery externally, the pictures and thumbnails come out great but the comment section and combobox text doesnt com out

problem 2: the background color in the gallery doesnt show through on the main mc.

problem 3: the gallery shows in front of the transition screen. i want the gallery to be loaded in behind the transition

the script is awsome and it works great on its own but i dont know enough about action scripting or xml to make it load properly. some assistance would be much appreciated! ive attached my flas if that helps!

Photo Gallery Using XML And Flash
hi all,

i tried to get this Photo Gallery Using XML and Flash to run, but how does it work if i don't use 300x200 pixel size...well if i make it bigger in flash mx 2004 still my pix are too big - or better they are resized by the programm?!?!

i am confused...need your help...pleaaaase...

cheers

Photo Gallery Using XML And Flash
Hi,

I tried this tutorial Photo Gallery using XML and Flashin this web site for which I loaded 27 images .but to my surprise image no.11,12,13 and 19 are not coming while other images are showing perfectly. what could be the reason for not loading the images? I changed the sequence of the images but still its not working.
I just want to know what are the reasons due to which an image may fail to load to swf.
Thanks,
kedar

XML And Flash Photo Gallery
Going to take a shot at Kirupa tutorial on the enhanced (easier maintenance!) XML Photo Gallery...

http://www.kirupa.com/developer/mx20...otogallery.htm

Has anyone gone down the path of this tut and REMOVED the next and prev buttons?

That's the path I am going. I want the photos to alpha between one another on a time delay of say x seconds.

Just curious...

Thanks.

Photo Gallery Using XML And Flash
Hi ppl

i tried to do this tutorial Photo Gallery Using XML and Flash

it worked fine with the images Kirupa provided but when i tried to change it with images of my own it want show, it got sumthing to do with the image size and the position that i know, but not sure how to reslove it??? any help??

i tried with a image size of 640X480 and it showed up, but only the top part of the image was visible!!! so i rezized it to the size of the screen which was 300X200 and now i can't even see the image, i knows so simple but my brain has been working for a good, 48 h none stop and its kida fryed

please help me, need to know this asap, much appriciated
vas

Photo Gallery Using XML And Flash
Just a question.

I did this tutoral for a photo gallery.

http://www.kirupa.com/developer/mx20...otogallery.htm

The gallery swf I have is loaded into another swf. My descriptions show and number of pictures but not my images. Everything is placed correctly.

How do i get them to show?

Frankie B

Photo Gallery Using XML And Flash
Hello,

I have been try several tutorials on creating Photo Galleries in flash, howver i have been running into some problems along the way.

This tutorial is exactly what i have been looking for--> http://www.kirupa.com/developer/mx20...otogallery.htm
However, when attempting to open the Partial FLA file provided an error message appears in Flash stating : "Unexpected File format" I am not sure why this is appearing..? I am using Flash MX Version 6.0. I have tried opening all of the FLA files provided off this tutorial.
Any help/suggestions are greatly appreciated!

thanks in advance
-ryan

FLASH PHOTO GALLERY
Hello,

i have been trying to develop a Photo gallery using flash. Unfortunatley iI have been running into many problems. I have been working on this tutorial--> http://www.kirupa.com/developer/mx/photogallery.htm

However, i have run into some problems. First my images are not showing up in the gallery viewer....
Secondly the graphics in the movie seem to be distorted somewhat...


Any help is greatly appreciated!

Photo Gallery XML/Flash
The tutorial on this site is excellent and will be the blueprint for me in creating a photo gallery of my own. I'm quite new to xml and have a few questions though.

Can you specify .swf files in the xml document to load in a photo gallery as the you can with .jpegs?

...and...

Is it possible within this tutorial to add some sort of slide show feature? Or by the very nature of how the .fla and .xml work it isn't possible?

Basically, I'm after something like slideshowpro but I'd like the experience of building it, and all the extra understanding of AS and XML that will give me, not to mention the shoestring budget I'm on!

Thanks in advance.

Hi btw!




*hope this is the right place to post this thread*

Photo Gallery With XML/Flash
I am looking for a photo gallery to use for an upcoming site I'm making. The person I'm working with would like a photo gallery like this one:
http://www.djagentx.com/gallery/

I'd like to know if there is anything I can use to do that.

Copyright © 2005-08 www.BigResource.com, All rights reserved