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.

Similar Messages

  • 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/

  • 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 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/

  • Flash Photo Gallery Question

    Hello,
    I am a photographer interested in designing a photo gallery
    website.My question is how are the special effects created in Flash
    for when a thumbnail is clicked and the photo downloads into the
    picture viewer? (such as the photo fading in , the photo is
    assembled from small blocks, the photo downloads from left to
    right, the photo downloads after a flash of light) Is there a name
    for these effects? Thank you so much, Wendy

    Wonderwendy wrote:
    > Hello,
    > I am a photographer interested in designing a photo
    gallery website.My
    > question is how are the special effects created in Flash
    for when a thumbnail
    > is clicked and the photo downloads into the picture
    viewer? (such as the photo
    > fading in , the photo is assembled from small blocks,
    the photo downloads from
    > left to right, the photo downloads after a flash of
    light) Is there a name for
    > these effects? Thank you so much, Jim
    These are some complex components/files you can get free off
    the net:
    http://www.sephiroth.it/file_detail.php?id=139
    ImageGallery 3
    http://www.sephiroth.it/file_detail.php?id=135
    Photo Album
    http://www.sephiroth.it/file_detail.php?id=124
    Image Fader
    This particular sample is the closets to what you are looking
    for. It is XML
    driven so all the files information can be edited w/o
    changing the Flash movie.
    You can define 9 transitions along the image name and the
    rest happens automatically.
    There are many more samples online, search for stuff like
    "flash photo gallery"
    or "flash gallery", some free some shareware but definitely
    plenty.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • 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

  • 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

  • IWeb Google Maps and Photo Gallery Question

    I have a Website I started to create a while back. Is there a way to insert a google map and some type of photo gallery
    into my site, now that MobileMe is gone???  I really liked the simplicity of iWeb. Is there anything else out there?
    Thanks, Eric U

    You can still insert Google maps into your site - you just need to do it as you did before the Google maps widget arrived.
    Go to Google maps and create the map you want and then copy and paste the code and place it in an ordinary html snippet and then click on Apply and the map will appear.
    Also, another tip - you could have found all the answers that you were looking for before even posting your question by searching this forum and there have been literally hundreds of posts on the same topics of Google maps and slide shows.
    Suggest you search the forum and look for posts by Old Toad and Roddy, who have found alternatives.
    You don't need to stop using iWeb - if you have it use it, but just upload to another host/server.
    There are plenty of alternative out there - again a forum search would have given you answers.
    Take a look at RapidWeaver, Sandvox, Freeway Pro/Express and Flux 4.  You can download free trials of all of these and most are available for purcahse from the Mac App Store.

  • Photo Gallery Question

    Hi ,
    Is there another way to display photos in photo gallery
    without using the list menu ?
    I am trying with plain links but i think i can't.
    For example:
    <h3 id="albumName"
    spry:region="dsGallery">{sitename}</h3>
    <div spry:region="dsGalleries"
    spry:repeat="dsGalleries"> <a href="#"
    onclick="dsGalleries.setCurrentRowNumber(this.selectedIndex);">{sitename}</span></a>
    </div>
    Please help....
    Regards
    Bsides

    This is a multi-part message in MIME format.
    ------=_NextPart_000_002E_01C75028.BBBB32B0
    Content-Type: text/plain;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    Hi, I have a problem with something like that, but I paste
    "select" tag =
    on a different page ("inicio.htm") and I want to go to the
    select =
    gallery at "galeria.htm"..=20
    <form action=3D"galeria.htm"
    enctype=3D"multipart/form-data">
    <div id=3D"galleries" spry:region=3D"dsGalleries">
    <select spry:repeatchildren=3D"dsGalleries"
    id=3D"gallerySelect" =
    onchange=3D"dsGalleries.setCurrentRowNumber(this.selectedIndex);">
    <option spry:if=3D"{ds_RowNumber} =3D=3D
    {ds_CurrentRowNumber}" =
    selected=3D"selected">{sitename}</option>
    <option spry:if=3D"{ds_RowNumber} !=3D =
    {ds_CurrentRowNumber}">{sitename}</option>
    </select>
    </div>
    </form>
    Any idea? script? I need some help..
    Greetings from Margarita Island, Venezuela
    Daniel N.
    "B-sides" <[email protected]> escribi=F3 en
    el mensaje =
    news:[email protected]...
    Hi ,
    Is there another way to display photos in photo gallery
    without using =
    the list=20
    menu ?
    I am trying with plain links but i think i can't.
    For example:=20
    <h3 id=3D"albumName"
    spry:region=3D"dsGallery">{sitename}</h3>
    <div spry:region=3D"dsGalleries"
    spry:repeat=3D"dsGalleries"> <a =
    href=3D"#"=20
    =
    onclick=3D"dsGalleries.setCurrentRowNumber(this.selectedIndex);">{sitenam=
    e}</span>
    </a> </div>
    Please help....
    Regards
    Bsides
    ------=_NextPart_000_002E_01C75028.BBBB32B0
    Content-Type: text/html;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=3DContent-Type content=3D"text/html; =
    charset=3Diso-8859-1">
    <META content=3D"MSHTML 6.00.5730.11" name=3DGENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY bgColor=3D#ffffff>
    <DIV><FONT face=3DVerdana size=3D2>Hi, I have a
    problem with something =
    like that,=20
    but I paste "select" tag on a different page
    ("inicio.htm") and I=20
    want to go to the select
    gallery at=20
    "galeria.htm".. </FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>&lt;form
    action=3D"galeria.htm"=20
    enctype=3D"multipart/form-data"&gt;<BR>&lt;div
    id=3D"galleries"=20
    spry:region=3D"dsGalleries"&gt;<BR>&lt;select =
    spry:repeatchildren=3D"dsGalleries"=20
    id=3D"gallerySelect"=20
    onchange=3D"dsGalleries.setCurrentRowNumber(this.selectedIndex);"&gt;<BR>=
    &lt;option=20
    spry:if=3D"{ds_RowNumber} =3D=3D {ds_CurrentRowNumber}"=20
    selected=3D"selected"&gt;{sitename}&lt;/option&gt;<BR>&lt;option=20
    spry:if=3D"{ds_RowNumber} !=3D=20
    {ds_CurrentRowNumber}"&gt;{sitename}&lt;/option&gt;<BR>&lt;/select&gt;<BR=
    >&lt;/div&gt;<BR>&lt;/form&gt;</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>Any idea?
    script? I need some =
    help..</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>Greetings from
    Margarita Island,=20
    Venezuela</FONT></DIV>
    <DIV>
    <P><FONT face=3D"Arial, Helvetica, sans-serif"
    size=3D2><STRONG>Daniel=20
    N.</STRONG></FONT></P></DIV>
    <BLOCKQUOTE=20
    style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT:
    5px; =
    BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
    <DIV>"B-sides" &lt;<A=20
    =
    href=3D"mailto:[email protected]">[email protected]=
    </A>&gt;=20
    escribi=F3 en el mensaje <A=20
    =
    href=3D"news:[email protected]">news:eq9q6b$gpr$1@forums=
    .macromedia.com</A>...</DIV>Hi=20
    ,<BR> Is there another way to display photos
    in photo gallery =
    without=20
    using the list <BR>menu ?<BR> I am
    trying with plain links but i =
    think i=20
    can't.<BR> For example:
    <BR> &lt;h3 id=3D"albumName"=20
    spry:region=3D"dsGallery"&gt;{sitename}&lt;/h3&gt;<BR> 
    &lt;div=20
    spry:region=3D"dsGalleries"
    spry:repeat=3D"dsGalleries"&gt; &lt;a =
    href=3D"#"=20
    =
    <BR>onclick=3D"dsGalleries.setCurrentRowNumber(this.selectedIndex);"&gt;{=
    sitename}&lt;/span&gt;<BR>&lt;/a&gt;=20
    &lt;/div&gt;<BR><BR> Please=20
    =
    help....<BR><BR> Regards<BR> Bsides<BR></BLOCKQUOTE></BODY></HT=
    ML>
    ------=_NextPart_000_002E_01C75028.BBBB32B0--

  • Iweb photo gallery question

    I have created an Iweb photo gallery on my website, and I wish to add links to each individual photo so that when a person clicks for the full view of the photo a link will appear somewhere on the page. I want each link to be specific to each photo. I have tried adding captions and making them links, but they don't work, they're un-clickable. Is there any possible way to do this in Iweb?

    There are a number of ways you could add ecommerce to your site. I'm not familiar with the option but if you do a search for ecommerce in this forum you'll get several topics on the subject. Roddy has some very good information at this http://www.musicformusicians.com site.
    This search result has several topics on the subject: http://discussions.apple.com/search.jspa?threadID=&q=ecommerce&objID=f1309&dateR ange=last90days&userID=&numResults=30&rankBy=10001.

  • Spry_P1_6_10-01  Photo Gallery questions

    I am attempting to use the Photo Gallery from the newest
    download of the Spry Framework and I have 2 issues.
    First, I build the images and thumbs galleries using
    Photoshop CS3 and the automate photo gallery option to build the
    library. All of the XML and Image Data is identical to the existing
    Structure / folders (named China, Egypt, and Paris). I replace the
    files and modify the info in the galleries XML but the result is an
    empty gallery. Is there a structure I am missing?
    Second, I am building the galleriy in a DIV. The demo works
    fine all by itself but when I place the code into a DIV I get an
    unexpected result in the thumbnail viewer. as the images expand
    they push all the other thumbs around and shuffel about.
    The page I am talking about is located at:
    http://www.1stbankersrealty.com/athenatest/portfolio2.php
    All other items are working fine
    I also want to mention I tried using the Addon for Bridge
    discussed in the folowing forum:
    Generate Photo Gallery XML for Spry with Adobe Bridge
    And I am a bit confused how it works...
    I am new to Spry so I hope someone can help....
    Thanks,
    Kevin

    Please delete this posting. I've found the full original
    information in the v1.6 pre-release information and will compare to
    that baseline.

  • Spry photo gallery question:

    Hi,
    thanks to mr. Booth's tutorial I was able to implement a nice Spry gallery into our website. Now I want to change one simple thing: the pictures that make up the galleries are to be moved to our ftp server (as opposed to our webserver). The logical thing to to seemed to edit the base parameter in the relevant photo.xml file to something like this: base=ftp://user:[email protected]/directory/ but no dice. So the question is: how do I point the xml file to an external ftp location for the actual photos?
    Thanks in advance for any help!

    you can't do cross domain requests with AJAX. going to a ftp:// would count as other domain.
    So that is not possible. Unless you create a server side proxy that reads the data from your ftp server and about puts the results.

  • 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

  • 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.

Maybe you are looking for