Home / Components / Galleries & Slideshows / XML Photo Gallery /

XML Photo Gallery

55 purchases

emot1con Galleries & Slideshows XML Photo Gallery A photo gallery that is customized via an XML feed. $3 http://www.flashcomponents.net/component/xml_photo_gallery.html http://www.flashcomponents.nethttp://u1.flashcomponents.net/components/small/443_1.png

License:

By purchasing and downloading this license, you are entitled, as buyer, to use  the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website&nbs... [+]

> View graphic table with full license features

$3.00

buy now

Package includes: FLA

Flash Version: Flash CS3, Flash CS4

Viewable with: Flash Player 9

Action Script: ActionScript 3.0

Product ID:F0800443

Author:

emot1con

emot1con avatar

Professional Flash CS3 Developer

Tags:

 

Recently viewed:

XML News with Slide Show
XML News with Picture Red Series
XML News Ticker
XML Multiple Image Gallery v10
XML MP3 Player with Playlist
XML Media Gallery - MP4 MP3 FLV Images
XML List Menu AS3
XML Image Viewer with 3D Aspect
XML Image Slideshow v11
XML Image Slideshow v1
XML Image / Photo Gallery - V1
XML Image Gallery Pixelate V1 Effect
A photo gallery that is customized via an XML feed.

$3.00

buy now

License:

Personal License By purchasing and downloading this license, you are entitled, as buyer, to use  the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website or other multimedia project not generating income ), your personal work or work for a client. You may not redistribute / resell the functionality provided with the purchased product without the author's and / or FlashComponents.net written permission, but you may modify its content. In case you want to use the product for a commercial project then you will have to buy the 'Commercial License'.

Usage Terms: Personal Commercial Multiple
Use in ONE SINGLE NON-COMMERCIAL project
Unlimited use in the same project
Use in ONE SINGLE COMMERCIAL project
For your client's ONE SINGLE COMMERCIAL project
MULTIPLE COMMERCIAL projects
For your client's MULTIPLE COMMERCIAL projects

Other by emot1con:

Product Carousel

This is a product carousel intended for a home ...[+]

More >>

Falling Stars Effect

Stars Falling from the sky and leaving star dus...[+]

More >>

Animated Smilies

15 Animated Smilies for your Flash projects.

More >>

Related components:

Vertical Zoom XML Photo Gallery

With PPG you can simply create categories and a...[+]

More >>

Horizontal Dock Gallery XML

Dynamic horizontal scaling dock image gallery.

More >>

Ultimate XML 3D Thumb Wall Gallery

An amazing AS 3.0 3d wall gallery.

More >>

1 / 22

Featured components:

HTML / XML Video List White AS2 - v2 ( & FLV Player )

HTML / XML Video List - white theme - with mult...[+]

More >>

FT ALL FILES PACKAGE

Get Unlimited Download - ALL PAST AND FUTURE FL...[+]

More >>

HTML / XML Video List White AS3 - v2 ( & FLV Player )

HTML / XML Video List - white theme - with mult...[+]

More >>

20 comments

Add comment

  • Upon unzipping this file, I found that it contained no FLA file as advertised. Am I missing something here?

    #  /  PM  /  posted on Jun 24, 2008
  • Okay, I figured out which file is the FLA. It doesn't specify it in my explorer because the file has no extension. Now I'm trying to figure out where to change the image sizes within the code.

    It's somewhat frustrating because the code has not been commented at all and the zip contains no instructions.

    #  /  PM  /  posted on Jun 24, 2008
  • I have fixed the files so that the Flash file now contains a .fla extension. I have also gone through and added comments to the code.

    #  /  PM  /  posted on Jun 24, 2008
  • I tried to do it myself since I have followed several Xml gallery instructions before. But when I edited file I find it doesn‘t work. It only works for your example. :( Help is much appreciated cos i‘m dumbfounded now.



    #  /  PM  /  posted on Sep 03, 2008
  • TypeError: Error #2007: Parameter url must be non-null. at flash.net::URLStream/load() at flash.net::URLLoader/load() at PhotoGallery()



    #  /  PM  /  posted on Sep 03, 2008
  • I get the following error message when I run the fla file
    TypeError: Error #2007: Parameter url must be non-null. at flash.net::URLStream/load() at flash.net::URLLoader/load() at PhotoGallery()



    #  /  PM  /  posted on Sep 12, 2008
  • i‘m interested in this, but can you let me know if it‘s fixed or am i going to have a billion problems?



    #  /  PM  /  posted on Oct 11, 2008
  • TypeError: Error #2007: Parameter url must be non-null. at flash.net::URLStream/load() at flash.net::URLLoader/load() at PhotoGallery$iinit()


    What do i do?



    #  /  PM  /  posted on Dec 08, 2008
  • You must pass in a value for feed in the query string.


    ex.


    http://example.com/gallery.swf?feed=http://example.com/myfeed.xml



    #  /  PM  /  posted on Jan 19, 2009
  • I just bought this and I have the same problem. Can you be a little more specific about how to fix it.


    TypeError: Error #2007: Parameter url must be non-null. at flash.net::URLStream/load() at flash.net::URLLoader/load() at PhotoGallery()



    #  /  PM  /  posted on Feb 03, 2009
  • Open up the file PhotoGallery.html and it shows you the embed code that you need to use to get this to work correctly. Here it is:


    <object classid=“clsid:d27cdb6e-ae6d-11cf-96b8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0” width=“560” height=“400” id=“PhotoGallery” align=“middle”> <param name=“allowScriptAccess” value=“sameDomain” /> <param name=“allowFullScreen” value=“false” /> <param name=“movie” value=“PhotoGallery.swf?feed=http://www.example.com/images.xml” /><param name=“quality” value=“high” /><param name=“bgcolor” value=”#191919” /> <embed src=“PhotoGallery.swf?feed=http://www.example.com/images.xml” quality=“high” bgcolor=”#191919” width=“560” height=“400” name=“PhotoGallery” align=“middle” allowScriptAccess=“sameDomain” allowFullScreen=“false” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” /> </object>



    #  /  PM  /  posted on Feb 04, 2009
  • Thanks,


    I did this and it works ok now.


    //Gets the parameters from the HTML embed code


    var parameters:Object = stage.loaderInfo.parameters;


    //Load the XML feed that is grabbed from the feed variable appended to the query string in the HTML embed code


    var feedLoader:URLLoader = new URLLoader();


    feedLoader.addEventListener(Event.COMPLETE, _handleFeedLoad);


    feedLoader.load(new URLRequest(parameters.feed ?parameters.feed :


    “file:///C:ThisIsWherethePathToMyLocalXmlFileIs.xml”));
    }



    #  /  PM  /  posted on Feb 04, 2009
  • Older user

    Original design :|



    #  /  PM  /  posted on Feb 21, 2009
  • Hi,
    I bought this and there is no final .fla file in the zip.
    Can I please have the .fla file that goes with the final PhotoGallery_Example.swf
    Thanks



    #  /  PM  /  posted on Mar 10, 2009
  • where do i paste the embeded code copied from below to get rid of the error#2007


    I also tried inputing the action from ‘tutcat’ in flash but got syntax error on last two lines (syntax error: expecting rightparen before colon & rightbrace} )


    please help, thanks



    #  /  PM  /  posted on Mar 15, 2009
  • Did anyone get this working because not even working when I test movie!?


    And theres no step by step instructions???


    Please help


    Ernie*



    #  /  PM  /  posted on Jun 27, 2009
  • I keep getting this.


    TypeError: Error #2007: Parameter url must be non-null. at flash.net::URLStream/load() at flash.net::URLLoader/load() at PhotoGallery()


    I am really new to using these so please can you tell me how to use this in my projects step by step because I havnt found much please on this site.


    Ernie*



    #  /  PM  /  posted on Jun 27, 2009
  • You must add the url parameter after the swf file. Here is the embed code:


    <object classid=“clsid27cdb6e-ae6d-11cf-96b8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0” width=“560” height=“400” id=“PhotoGallery” align=“middle”> <param name=“allowScriptAccess” value=“sameDomain” /> <param name=“allowFullScreen” value=“false” /> <param name=“movie” value=“PhotoGallery.swf?feed=http://www.example.com/images.xml” /><param name=“quality” value=“high” /><param name=“bgcolor” value=”#191919” /> <embed src=“PhotoGallery.swf?feed=http://www.example.com/images.xml” quality=“high” bgcolor=”#191919” width=“560” height=“400” name=“PhotoGallery” align=“middle” allowScriptAccess=“sameDomain” allowFullScreen=“false” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” /> </object>


    Replace http://www.example.com/images.xml with your file.



    #  /  PM  /  posted on Jun 27, 2009
  • same error, have tried changing the code like suggested but still doesnt work. Poor instructions and code doesnt work. If this is meant for Flash and AS3 its not very good mate, and no body can seem to get it working.



    #  /  PM  /  posted on Aug 18, 2009
  • Does this have to be embedded into an HTML file? I meant for it to go into an already existing flash application. If it can’t work without the HTML file, it’s of no use. So many of these are based on having to be put into an HTML file. Some of us actually want to put them into an existing flash file, without the need for html. So dissapointing.


    Are any of these galleries build where you can actually move the layers around in the FLA file anymore?



    #  /  PM  /  posted on Jan 29, 2010
Please login to post comments.