Flash Catalyst Photo Gallery

Here's the link to the .fxp project I am currently working on.
http://www.piperhale.com/site-w-gallery2.fxp
On the gallery page, I was able to create the 40 thumbnails necessary for my gallery but when I created a custom component for the full-sized images, there is a max of 20 different states so one for each photo. Because I have 40 total photos, I created a second custom component with the other 20 photos. My problem is that when I click on the link for image 21, which would be the first state in the second custom component, the first custom component stays on top rather than bringing the second component to the front. Does anyone know how I could fix this problem? I don't know if I was able to accurately describe my problem, so if you  need any clarification or can help me please reply.
--Sawyer Ward

Hi Sawyer,
I assume you are using On Click interactions on each of your thumbnails to show the appropriate image within the custom component?  If so, you can just add a second On Click interaction that shows the correct custom component and hides the other one (or transitions to the state where the correct component is visible, if you're doing it using states).
You could add this to each of the thumbnails (it's perfectly allowed to do more than one thing On Click).  Or, to avoid having to do that 40 times, you could put each set of 20 thumbnails in a group and add an On Click to the group, since you want to do the same show/hide action regardless of which thumbnail within the set was clicked.  Both the group's On Click and the individual thumbnail's On Click will run simultaneously when the user clicks a thumbnail.
Hope that helps!
- Peter

Similar Messages

  • Make 3D Flash wedding photo gallery with songs

    Last week, my dearest sister got married. There were about a gazillion things to love about her wedding day… so many moments all wrapped up into one very totally unforgotten event. I took lots of wedding photos on her wedding day and wanted to give her a surprise of making her a 3D flash wedding photo gallery with wedding songs.
    As I expected, my sister was moved, many thanks she said to me. Now I just want to give my many thanks to Aneesoft 3D Flash Gallery. It is a wedding gallery making software that helped me make so gorgeous flash gallery with my sister's wedding pictures. Knowing nothing about flash making, I never thought making a splendid 3D flash gallery would be so easy. My friend, do you eager to make your own cool, awesome flash gallery now? Do you eager to sharing your wedding photos in a stunning 3D photo gallery? Let me show you the way!
    What you'll need:
    1. Wedding photos and wedding songs for your 3D flash gallery
    2. Aneesoft 3D Flash Gallery
    Step 1: Download & install Aneesoft 3D Flash Gallery
    We'll be using a very nice 3D gallery making software 'Aneesoft 3D Flash Gallery' to making a romantic wedding flash gallery with wedding photos and wedding songs, head over here and download the free trial version. Next step is to install the program.
    Step 2: Import wedding photos and edit
    You can add up to 500 photos that you want to use in your wedding photo gallery, arrange the photos as you like. Aneesoft 3D Flash Gallery supports a wide range of file formats for images, such as .jpg, .bmp, .gif. Click "Add Caption" to add title and description for your wedding photos. And you can also crop and add special effects to them to make your wedding photos more perfect
    Step 3: Choose from a variety of wedding flash gallery templates
    Aneesoft 3D Flash Gallery offer you an easy way to make a stunning wedding photo gallery by choosing from variety of flash gallery templates. A flash gallery template automatically put preset decoration to wedding gallery. When you select a preset flash gallery template, you're able to enhance it by customizing some additional settings, such as background, thumbnail effects, playback options and scrolling actions. For the adventurous users, explore the powerful advanced features and tools that gives you total control over how you compose your wedding flash photo gallery.
    Step 4: Add some wedding songs for your wedding flash gallery
    Wedding songs are a very important factor to consider when making your wedding flash photo gallery. They set the general mood and tone for your gallery, while also allowing you to express your feelings through music. You may find the perfect wedding songs out of hundreds of popular wedding songs and music through Amazon.com or iTunes.
    In this step, you can add some wedding songs as background music to play along with your wedding flash gallery. Click Add Music button to browse and add your wedding songs. You can add, remove and edit the wedding music files. And you may check the option to control the background music looping or not.
    Step 5: Preview and publish your 3D wedding flash gallery
    It is advisable that you preview the wedding flash gallery at least once, before you publish it. Click and drag mouse for scrolling and tilting the 3D flash gallery. Click on the thumbnail to zoom in and out the photos. You have several options to share and publish your 3D wedding photo gallery, such as SWF, EXE and HTML. It depends on your needs.
    OK, now your wedding flash gallery is done. What do you think of the wedding flash gallery that I made for my sister? End with my sister's sentences "Fun is not ending, romantic is not ending, and love is just beginning!" Wish your wedding pictures can also be splendid as my sister's, and your love is just beginning, enjoy!
    know more:
    http://www.aneesoft.com/win-3d-flash-gallery.html
    http://www.aneesoft.com/tutorials/3d-flash-gallery/make-wedding-flash-gallery-with-songs.h tml

    As for AS3 part of it, I am not sure your code really works. There are syntax and logical errors there.
    I think you need to take it step by step and accomplish several task in the following sequences:
    1. Write code that loads XML correctly;
    2. Write code that enables buttons;
    3. Write code that will load images on button clicks.
    The code below shows in principal what needs to be done in order to load XML and make the data in this XML available for further consumption. Also, by accomplishing this step you will iron out all the PHP vs Flash wrinkles including your XML.
    Please note, I don't know your XML structure so all the parsing issues you need to resolve yourself.
    Once you get handle on it - we, hopefully, will talk about steps 2 and 3.
    import flash.display.Loader;
    import flash.events.*;
    import flash.net.*;
    var images:XML;
    var myRequest:URLRequest;
    var myLoader:URLLoader;
    // list of image urls that will come from loaded XML
    var imageList:XMLList;
    myRequest = new URLRequest("Photography.php");
    myLoader = new URLLoader();
    myLoader.addEventListener(Event.COMPLETE, onFileLoaded);
    // suggested handler for unexpected errors - avoids some headaches
    myLoader.addEventListener(IOErrorEvent.IO_ERROR, onLoadError);
    myLoader.load(myRequest);
    // Note: all the listeners are removed
    // it is always wise to remove listeners that are needed any longer
    // to make objects eligible for arbage collection
    function onLoadError(e:IOErrorEvent):void
         trace(e.toString());
         myLoader.removeEventListener(Event.COMPLETE, onFileLoaded);
         myLoader.removeEventListener(IOErrorEvent.IO_ERROR, onLoadError);
    function onFileLoaded(e:Event):void
         myLoader.removeEventListener(Event.COMPLETE, onFileLoaded);
         myLoader.removeEventListener(IOErrorEvent.IO_ERROR, onLoadError);
         images = new XML(myLoader.data);
         // only now xml is ready and you can start loading images
         imageList= images.pic;

  • Flash-Web Photo Gallery

    I am trying to create a flash web photo galler using the Automate>Web Photo Gallery in CS2.
    I want to mix the features of the 2 existing options.
    In Flash Gallery 1, the thumbnails are listed as small icons in multiple lines and are magnified when the mouse hovers over them, like the dock in OS X.
    In Flash Gallery 2, the meta data listed in the xml file is displayed only if you explicitly click on the info button, and it is below the picture.
    I need these 2 options together. The rest of the options are not a problem I can go either way.
    Is there another Flash Gallery that will combine these two options?
    If not:
    Is there a way to modify the flash file to accomodate this?

    Google "Flash Gallery Templates", you'll see 2.4M links.
    Back to levonk's original question... sounds like you're trying to do what I'm trying to... alter the Flash files used to generate the Web Photo Gallery Flash Gallery 2.
    Here's my question, similar to yours:
    How do i open the "gallery.swf" file to alter Photoshop Flash Web Photo Gallery?
    Built Web Photo Gallery in Photoshop CS2's Automate. It turned out OK, and I made adjustments in the "index.html" and "galleryconfig.xml" files in a text editor (BBE).
    Now, I'd like to alter the template's .swf file but can't open it as it's "protected".
    It would be nice to be able to set up a new template that does exactly what I intend, without altering the other files. But I can't open the protected "gallery.swf" file to make changes. Can someone help? Does Adobe have an unprotected copy of that file I can fiddle with? Is there some "trick" to open a copy of that file? I could learn a lot and make it easy to repeat results for a site. Any assistance most appreciated!

  • Flash & XML Photo Gallery with Categories

    Hello friends
    i am trying but
    i want to create Flash & XML Photo Gallery with Different Categories
    please help me

    If you want to do using oop
    go throgh this article first
    http://active.tutsplus.com/tutorials/actionscript/as3-101-oop-additional-concepts/

  • 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);
    }

    Right... you need to update row and column, for each k:
    var perRow = 5;
    function thumbnails_fn(k) {
    //these go inside the function
    var row = Math.ceil(k/perRow);
    var col = (k%perRow == 5) ? k/row : k%perRow;
    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)*col;
    target_mc._y = hit_left._y+(target_mc._height+5)*row;
    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);
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Export preset to Business Catalyst Photo Gallery Module

    Does anyone know of a Export Preset to Business Catalyst Photo Gallery Module. Similar to the ones available for exporting to Smugmug or Zenfolio?

    If you're a little familiar with Business Catalyst, you might find this widget helpful.
    It's a BC Photo Gallery - Muse Widget, Its very easy to use and customize.
    There is a training video on how to set it up.
    However Brad is right, you'll need to upgrade to BC webMarketing Plan.

  • Can I add a business catalysts Photo Gallery module to Muse.

    Can I add a business catalysts Photo Gallery module to Muse - As my client want to upload images themselves to the gallery.
    I know that with the Muse plugin this is not possible. Therefore wanted to see if the photo gallery module in BC would work the same as the Blog Module?
    Thanks

    If you're a little familiar with Business Catalyst, you might find this widget helpful.
    It's a BC Photo Gallery - Muse Widget, Its very easy to use and customize.
    There is a training video on how to set it up.
    However Brad is right, you'll need to upgrade to BC webMarketing Plan.

  • Actionscript3 flash spherical photo gallery

    I am trying to get this photo gallery to work the way i want it too. I am trying to make the background transparent.
    And I can do it but when I do, the gallery seems to loose functionality. I can not scroll it, but it works when there is a background.
    I go about removing the drawBoard() function or one of the fills in the function. line 242-250.
    heres a link to the download http://www.flashandmath.com/flashcs4/spheregallery/spherical_gallery.zip.

    i understand that it is for flash cs4. my problem is figuring out a way too make background transparent so i can put it on html page and it shows background of html and not the background of the flash file. look in first post to download this file so you can try it out, to see what i am talking about.
    also i have read that i need to change the alpha in the component inspector but there is no option in this file to do that. is there any place else  i can change alpha.
    do me a favor open the file in flash and publish it and then put a new background in the html so you can see what i am trying to do

  • Flash Contest - Photo Gallery

    Hello, I hope this forum admins are OK with this post, else
    please re/move it.
    We are having a Flash contest at FFILES.com , users can
    submit a flash photo gallery, the user with best gallery system
    will receive $250.00.
    There are more details here:
    www.ffiles.com/flash/photo_gallery_contest
    Please let me know if you have questions.
    - Adrian

    no no....i designed the photo gallery especially for this
    contest....just asking if i could sell it on flashden even before
    the contest's deadline? and do you give me the permission to send
    it to them with the photos you provided? 10x

  • Flash Actionscript Photo Gallery question

    So basically im putting together a little flash website and i
    created a photo gallery and put it on a frame seperate from the
    others and i want a button on the first frame to take you
    automatically to the photo gallery. So i did and it worked. I also
    created a little x-out button on the photo gallery so that when you
    click it it takes you back to frame 1 [index]. And it also works
    except the large thumbnails in my gallery follow it home and then
    you just stuck with a big old unwanted picture on your homepage.
    This is the code i put into the frame of the photo gallery::
    Any Thoughts?

    execute images.removeMovieClip(); when your x-out button is
    clicked.

  • Flash Web Photo Gallery Auto Play

    Hello!
    I'm using the Flash - Gallery 1 that came with Photoshop CS2. Is there a (hopefully easy) way to get the gallery to automatically play the slideshow when a user visits the page (instead of clicking the play button)?
    Thanks!
    Sonya

    Sonya,
    Unfortunately it can't be set through the options-but it can be done.
    It's is not too hard, but you do need Flash.
    The source files for the web galleries are generously posted for downloading at:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=2960
    In the _as folder there is a text file named coreFuntions.as. Near the top there is a listing of GLOBAL VARs. Change the line that reads: _global.showPlaying = false;
    to
    _global.showPlaying = true;
    save and you're almost there.
    Launch the Gallery1.fla and Publish (or test). It should produce a gallery.swf that you can drop into your original gallery folder (with the other controlling files.

  • Adobe web photo gallery - flash gallery 2

    I'm using the adobe web photo gallery, flash gallery 2 and I
    want to slow down the time it takes for each photo to fade in. I'm
    referring to the part that after the image preloader is done and
    when the image is transitioning from white into the full image.
    I've gone through the code but to no avail. Can someone help me
    with this? Thanks!

    Most CS3 Web Photo Gallery Templates are flash free.  They use straight HTML.  Even the ones the change images automatically just use HTML to refresh the page displayed and change the page to the next image.   The Photoshop Web Gallery Template can be edited and customized to better suit your needs.    Adobe has removed Photoshop's Photo Web Galleries from newer version of Photoshop however the Feature can be installed into the newer Photoshop versions.   Adobe added an output module to the Bridge that can create Web Photo Galleries these are mostly Flash based and not easily customized like Photoshop's old Web Photo Gallery templates.
    IMO there is nothing wrong with Flash Web Galleries other then mobile tablets and phone do not have flash support. I have yet to see any HTML 5 web gallery with features that match Flash Galleries.  I'm not a fan of Flash web sites or Flash games.  However there are many Flash web photo galleries that perform well and have great features.  I do not particularly want to display my images on small web phones.  If you want to see them on a tablet get a windows 8 pro tablet they should have flash support. I put large images in Web Photo galleries fitted for 1600x1200 displays and count on flash to resize them for the users browsers window.
    Here is an example of a Flash web photo gallery. It contains 8 or 9 albums some with additional feature enabled.  All generated in Photoshop with a custom script. http://www.mouseprints.net/albums/
    Resize your browser window see the image sizes change use the menu in the bottom of the browsers window to change album and try full screen support.  I only use Flash for Web Photo Galleries.  I'm not selling so I do not need IOS and Android support.

  • Photoshop flash photo gallery

    I downloaded the source files for the Flash Web Photo
    Gallery-1 from the Adobe site, and exported the fla file without
    any changes to flash 6.0 which should be the same as the one that
    comes with photoshop. When I loaded the page into the browser, the
    header text did not load (Gallery name, Photographer, etc.). There
    is also a problem with the meta data that shows up when you hover
    over the picture or click the info button. The size of the lines is
    reduced to about 3 pixels.
    My main reason for all this is to stop showing the meta data
    when the mouse is over the picture and limit it only to prssing the
    info button. I am not very good in flash, but I found the place
    where this happens and I commented the fadein fadeout functions. I
    got the result I wanted but with these problems.
    Is there a way to fix this?

    el.lucky.lucasik, the xml files have specific settings that
    you can change. The photos.xml file includes the meta tags that
    appear on the pictures. If you delete all the meta tags, the file
    name appears.
    The setting I want to change is in the ActionScript. I did
    the change, and was able to get what I wanted. BUT, when I exported
    the .fla file, there were some issues, mainly those mentioned in my
    initial post.
    My problem now is not changing the settings, but exporting
    the file.

  • Using Adobe Web Photo Gallery

    I have PS CS4, on a mac, and I added the Web Photo Gallery plug-in.
    This works, but I cannot get PS to make a Web Photo Gallery that reflects the folder structure that I am using.
    PS just dumps all images into one ore more pages, without regard to their source folder structure.
    I want PS to make a home web page that contains just links to web pages that actually contain the images in the sub-folders.
    I do not see an option to do that.
    I have a home folder, which contains sub-folders, and those sub-folder contain the images.
    Does anyone know how to do this?
    Thanks.
    mac

    Most CS3 Web Photo Gallery Templates are flash free.  They use straight HTML.  Even the ones the change images automatically just use HTML to refresh the page displayed and change the page to the next image.   The Photoshop Web Gallery Template can be edited and customized to better suit your needs.    Adobe has removed Photoshop's Photo Web Galleries from newer version of Photoshop however the Feature can be installed into the newer Photoshop versions.   Adobe added an output module to the Bridge that can create Web Photo Galleries these are mostly Flash based and not easily customized like Photoshop's old Web Photo Gallery templates.
    IMO there is nothing wrong with Flash Web Galleries other then mobile tablets and phone do not have flash support. I have yet to see any HTML 5 web gallery with features that match Flash Galleries.  I'm not a fan of Flash web sites or Flash games.  However there are many Flash web photo galleries that perform well and have great features.  I do not particularly want to display my images on small web phones.  If you want to see them on a tablet get a windows 8 pro tablet they should have flash support. I put large images in Web Photo galleries fitted for 1600x1200 displays and count on flash to resize them for the users browsers window.
    Here is an example of a Flash web photo gallery. It contains 8 or 9 albums some with additional feature enabled.  All generated in Photoshop with a custom script. http://www.mouseprints.net/albums/
    Resize your browser window see the image sizes change use the menu in the bottom of the browsers window to change album and try full screen support.  I only use Flash for Web Photo Galleries.  I'm not selling so I do not need IOS and Android support.

  • Rendering Photo Gallery

    Our Goal is to render a business catalyst photo gallery with java script inside a muse layout.
    We used this Manual without success.
    Rendering a Photo Gallery XML feed using jQuery
    – we copy/paste the code into a new document, but it does’t works
    The second try was to work with a the galleria module:
    Use JavaScript Galleria Slideshow to Display an Adobe Business Catalyst Photo Gallery using jQuery
    – it works when we place the code on an new business catalyst site. but if we place the same code into a muse site, the jQuerry doesn’t load. The result is that the galeria Slideshow does’t load.
    Examples
    – Business Catalyste Page with no template, Link: no template
    – Business Catalyste Page with template, Link: template
    – Same code placed in muse Link: test
    Is there anybody who can help me to style an attractive gallery?
    Something like this
    – Link: Referenzen
    Perhaps somebody can make me an offer to develop a snippet in the way i use.
    Thanks for support

    Our Goal is to render a business catalyst photo gallery with java script inside a muse layout.
    We used this Manual without success.
    Rendering a Photo Gallery XML feed using jQuery
    – we copy/paste the code into a new document, but it does’t works
    The second try was to work with a the galleria module:
    Use JavaScript Galleria Slideshow to Display an Adobe Business Catalyst Photo Gallery using jQuery
    – it works when we place the code on an new business catalyst site. but if we place the same code into a muse site, the jQuerry doesn’t load. The result is that the galeria Slideshow does’t load.
    Examples
    – Business Catalyste Page with no template, Link: no template
    – Business Catalyste Page with template, Link: template
    – Same code placed in muse Link: test
    Is there anybody who can help me to style an attractive gallery?
    Something like this
    – Link: Referenzen
    Perhaps somebody can make me an offer to develop a snippet in the way i use.
    Thanks for support

Maybe you are looking for

  • Issues with Time Machine File Restore Permissions and Interface

    Hi All,I bought a Time Capsule in January 2010, and i've had backups since then. Time Machine's interface has pretty much always been laggy as ****, but I've always put that down to using it over wifi, perhaps that was a wrong assumption. Anyway, I w

  • Date Field in XML

    Hi friends, I am creating a Java application, and i am giving input and output data in XML. Can anyone tell me how to specify DATE element in XML. I think there is Swing date spinners in Swings, similar to that is there any Date element in XML Thanks

  • SEEBURGER AS2: AS2 Adapter failure - Cannot authenticate the user

    Hello, All was working fine but now I got these errors in an AS2 scenario. Sending a message via AS2. Also we don't receive any messages via AS2 anymore. This is the error when sending a message: Unable to forward message to JCA adapter. Reason: Fata

  • My iPod and iPad are synced together and I don't want them to be

    I have a school iPad and I can only use it for school since it was given to me by the school. My iPod is now synced to it but only my pictures that I've noticed, like all my pictures from my iPod photo stream is now in my iPad photo stream. And my mu

  • How can I remove the history bar on safari?

    There is no always show bookmark bar in settings. What can I do