Image Gallery...not slideshow

Is it possible in Muse to create an image gallery that can be uploaded in groups, and be refreshed with new uploads. I need to keep image galleries available and current, so I would like to upload groups and not individually if possible.  Also, is it possible to set each image so the user can click to copy URL link or to download image?
Thanks

Difficult to know for sure.  Example:  Out of a collection of 30 images transferred from PSE, all have "Error writing metadata", and none show prior edit history, including cropping. (most likely transferred all as JPEG.)  Of the 30, five images display filesize correctly in the Library, and are subsequently sized correctly when exported or put in the "Develop" module.  All others are not.
One of the five good images was definitely cropped; the remaining 29 I cannot remember.  I typically straighten and crop many of my picks, however.
Julian

Similar Messages

  • Image gallery not removing previous image

    Hi,
    I have an image gallery but I can't seem to get the previous image removed. I have two functions:
    [AS]function clearLoader():void {
    try {
      var li:LoaderInfo = slideLoader.contentLoaderInfo;
      if(li.childAllowsParent && li.content is Bitmap){
       (li.content as Bitmap).bitmapData.dispose();
    } catch(e:*) {}
    }[/AS]
    And
    [AS]while(currentContainer.numChildren)
    var obj:DisplayObject =  currentContainer.getChildAt(0) as DisplayObject;
    if (obj is Bitmap) {
      Bitmap(obj).bitmapData.dispose();
      currentContainer.removeChild(obj);
    } else if (obj  is MovieClip) {
      currentContainer.removeChild(obj);
    }[/AS]
    But in some way not the previous image is removed, but the one before that. Annoying, because if image 1 is larger than image 2, image 1 stays on the background. It is only when loading image 3 the first image is removed from the stage. Any advice?
    Thanks!
    Dirk

    Hi,
    1. With the switchSlide() function:
    function switchSlide(intSlide:int):void {
     if(!Tweener.isTweening(currentContainer)) {
      if(slideTimer.running)
       slideTimer.stop();
      intCurrentSlide = intSlide;
      if(currentContainer == sprContainer2)
       currentContainer = sprContainer1;
      else
       currentContainer = sprContainer2;
      currentContainer.alpha = 0;
      mcSlideHolder.swapChildren(sprContainer2, sprContainer1);
      clearLoader();
      slideLoader = new Loader();
      slideLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, fadeSlideIn);
      slideLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, showProgress);
      var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
      slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
      mcInfo.lbl_description.text = unesc_xmlSlideshow..image[intCurrentSlide].@title;
      mcInfo.lbl_artist.text = unesc_xmlSlideshow..image[intCurrentSlide].@artist;
      strLink           = unesc_xmlSlideshow..image[intCurrentSlide].@link;
      strTarget          = unesc_xmlSlideshow..image[intCurrentSlide].@target;
      mcInfo.mcDescription.lbl_description.htmlText = unesc_xmlSlideshow..image[intCurrentSlide].@desc;
      mcInfo.lbl_count.text = " Slide " + (intCurrentSlide + 1) + " / " + intSlideCount2;
    /AS
    2. No images from other domains... just the ones on my webserver.

  • Thickbox image gallery not working.

    HI guys,
    Im creating an image gallery using the 'thickbox' widget. When I preview my page on a browser, and click the thumbnail image, nothing happens. It just loads the thickbox preloader bar, nothing else!
    I've followed online tutorials by the book! Heck, it even works on live vew in DW, but doesn't do anything on a browser!
    Can someone shed some light on this?

    marie_barnsley wrote:
    I've been through and sorted the majority of the errors, apart from 3 that are flagging up to do with the Fancybox.
    The 'rel' tag seems to be the issue and from reading online I've changed this to 'data' instead which seems to have fixed the errors.
    However, the fancybox gallery still isn't working.
    You must have the scripts linked up incorrectly.
    Replace ALL of your script links with the ones below (once it's confirmed it's working you can go directly to the pages, download the scripts and save them locally)
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
    <script type="text/javascript" src="http://fancybox.net/js/fancybox-1.3.4/jquery.easing-1.3.pack.js"></script>
        <script type="text/javascript" src="http://fancybox.net/js/fancybox-1.3.4/jquery.fancybox-1.3.4.js"></script>
    <script type="text/javascript" src="http://fancybox.net/js/web.js?m=20100203"></script>
    Amend the <script> at the foot of the page to as below:
    <script type="text/javascript">
    /* Apply fancybox slideshow to 'group'*/
    $("a#group").fancybox({
    'transitionIn': 'elastic',
    'transitionOut': 'elastic',
    'speedIn': 600,
    'speedOut': 200,
    'overlayShow': false
    </script>
    Then give the anchor tags in the 3 images an id="group" as below:
    <a id="group" href="http://www.marieparkinson.co.uk/images/portfolio/full/harperoffice.jpg" title="Harper Office"><img src="http://www.marieparkinson.co.uk/images/portfolio/thumbs/harperthumb.jpg" alt="image 2"/></a>

  • Floating Divs in Image Gallery not within Div

    I am creating a property page template that is nested within the main website template. Within this template, I have created a div within a div for the Image Gallery I am going to create.There is a main image and then 5 thumbnails underneath and all of this is centered.
    What seems to be occurring is that if I float all of my thumbnail divs "left" so that they are all on same line, then they are no longer within the Image Gallery div. If I take away the "float" attribute (as I did on thumbnail 1 for an example), it finally resides within the div, however, the other jump down to the next line below it...stacking one on top of the other.
    I am getting so confused, though I have commented at the end of each div, but I am just not sure what is required here. Ran validator on Web Tools for both HTML and CSS, but I get nothing. Help!
    Here is the link.
    Thank you!
    Samantha

    Hi Samatha,
    Try following:
    Add a clear after your thumbnails as below:
    <!--end infoImageThumb5--></div>
    <br style="clear:both" />
    And in your css add float left to all your thumbnails.
    .profile #infoImageGallery #infoImageThumb1 {
        float: left;
        width: 95px;
        margin-right: 5px;
        height: 63px;
        background-color: #00F;
        margin-bottom: 5px;
    .profile #infoImageGallery #infoImageThumb2 {
        float: left;
        width: 95px;
        margin-right: 5px;
        height: 63px;
        background-color: #00F;
    .profile #infoImageGallery #infoImageThumb3 {
        float: left;
        width: 95px;
        margin-right: 5px;
        height: 63px;
        background-color: #00F
    .profile #infoImageGallery #infoImageThumb4 {
        float: left;
        width: 95px;
        margin-right: 5px;
        height: 63px;
        background-color: #00F;
    .profile #infoImageGallery #infoImageThumb5 {
        float: left;
        width: 95px;
        margin-right: 5px;
        height: 63px;
        background-color: #00F;
    Regards,
    Vinay

  • FancyBox JQuery image gallery not working

    Hi all
    I'm working on a new portfolio site and I'm struggling to load the Fancybox.
    I've used it before and it worked fine but this time all that is happening is the images are opening in a new window once clicked.
    I'm also using another Javascript on my site and i'm wondering if i need to do something different, or if they are clashing?
    This is my code:
    <head>
    <script type="text/javascript" src="Scripts/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
    <script type="text/javascript" src="Scripts/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
    <link rel="stylesheet" type="text/css" href="Styles/fancybox/jquery.fancybox-1.3.4.css" media="screen" />
    </head>
    <div id="content">
      <div id="portfoliomain"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image8','','Images/portfolioimages/latestwhite.jpg',1)"><img id="Image8" src="Images/portfolioimages/latest.jpg"></a></div>
    <div id="workbox1" class="fancybox">
    <a rel="group" href="Images/portfolioimages/mainwork/full/melissareed.jpg" title="Melissa Reed"><img src="Images/portfolioimages/mainwork/thumbs/melissareed.jpg" alt="image 1"/></a>
    <a rel="group" href="Images/portfolioimages/mainwork/full/harperoffice.jpg" title="Harper Office"><img src="Images/portfolioimages/mainwork/thumbs/harperthumb.jpg" alt="image 2"/></a>
    <a rel="group" href="Images/portfolioimages/mainwork/full/vowuserguide.jpg" title="Brochure"><img src="Images/portfolioimages/mainwork/thumbs/vowuserguidethumb.jpg" alt="image 3"/></a>
    </div>
    <script type="text/javascript">
    /* Apply fancybox slideshow to 'group'*/
    $("a.group").fancybox({
    'transitionIn'     :     'elastic',
    'transitionOut'     :     'elastic',
    'speedIn'          :     600,
    'speedOut'          :     200,
    'overlayShow'     :     false
    </script>
    </body>
    The CSS:
    #content {
              max-width: 960px;
              width: 100%;
              margin-left: 32px;
              padding-bottom: 310px;
    #portfoliomain {
      margin-top: 50px;
    #workbox1 {
              background-color: #CCC;
              width: 30%;
              height: 240px;
              border-right-width: 3%;
              border-right-style: solid;
              border-right-color: #FFF;
              float: left;
    The site is live but this code is still being worked on so it's not online yet. The site is www.marieparkinson.co.uk
    Thanks for any help,
    Marie

    marie_barnsley wrote:
    I've been through and sorted the majority of the errors, apart from 3 that are flagging up to do with the Fancybox.
    The 'rel' tag seems to be the issue and from reading online I've changed this to 'data' instead which seems to have fixed the errors.
    However, the fancybox gallery still isn't working.
    You must have the scripts linked up incorrectly.
    Replace ALL of your script links with the ones below (once it's confirmed it's working you can go directly to the pages, download the scripts and save them locally)
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
    <script type="text/javascript" src="http://fancybox.net/js/fancybox-1.3.4/jquery.easing-1.3.pack.js"></script>
        <script type="text/javascript" src="http://fancybox.net/js/fancybox-1.3.4/jquery.fancybox-1.3.4.js"></script>
    <script type="text/javascript" src="http://fancybox.net/js/web.js?m=20100203"></script>
    Amend the <script> at the foot of the page to as below:
    <script type="text/javascript">
    /* Apply fancybox slideshow to 'group'*/
    $("a#group").fancybox({
    'transitionIn': 'elastic',
    'transitionOut': 'elastic',
    'speedIn': 600,
    'speedOut': 200,
    'overlayShow': false
    </script>
    Then give the anchor tags in the 3 images an id="group" as below:
    <a id="group" href="http://www.marieparkinson.co.uk/images/portfolio/full/harperoffice.jpg" title="Harper Office"><img src="http://www.marieparkinson.co.uk/images/portfolio/thumbs/harperthumb.jpg" alt="image 2"/></a>

  • Full width images? Not slideshows!

    Hey, How can I have an image to be the full browser width? I know this possible with slideshows but o just want the single image! Ideally so that it is resized to fit different browser widths? Cheers

    II've tried that, the only issue is that when I reduce the size of the browser the image is cropped into. Is there a way of getting the image to remain the same, resizing to correspond with the browser width?

  • Photo Gallery Images Do Not Display When Uploaded

    I have made a photo gallery in Bidge, and locally, it looks fine. WHen I upload the folder to the remote server, none of the images will display.
    Everything is contained in the gallery folder, and I uploaded that folder. The web pages are displayed, but the images will not.
    On the image below, the list of local files are on the right, and the remote files are on the left.
    Please tell me what I've missed. Thanks.

    Is your photo gallery from a Collection?  Don't think those can be shared as they are  just alisis and not the image.

  • IPhoto Slideshow images will not burn to DVD -- Green Screen

    I'm trying to burn a slideshow I created in iPhoto '09 to a DVD using iDVD '09. The first few time I've done this, everything burns properly, including the DVD menu. When I select the "play" button to play the slideshow, the music that I originally entered plays correctly; however, the screen is completely green and none of the images appear.
    Slideshow has 136 pictures and three songs from my iTunes library. The menu in iDVD has no music and only one pictures, using a previously loaded theme from the default options. I am burning the slideshow to 16:9 ratio, NTSC, best performance.
    I have tried creating using the autoplay upon dvd insert option, which still did not work. Same green screen with slideshow music playing. I am currently trying to export the slideshow as quicktime movie then adding that to the project.
    PLEASE help. Any ideas appreciated.

    I did search apple's KB again but that's the only article I could find on Green Screen so I posted it to the forum for reference purposes only....
    Sorry it failed to help. I'll ask around for other suggestions and if anything comes up I'll post back.
    DRM is certainly a possibility as suggested above even though I've not seen it attached/related to an issue of this nature (lines yes, but rarely the entire screen).
    Message was edited by: SDMacuser

  • Slideshow images will not display correctly on mobile phone

    Hello,
    I have a website which I used several slideshows, in areas I would typically just used a rectangle and fill with photo.  This was done because my client wants to be able to update the images through business catalyst.  Unfortunately, when viewed on a mobile phone (I am using iOS 7) the slide show images do not display correctly.
    What can be done to fix this?  Is there another workaround I should try?
    Thanks!

    Hi Nicole
    The images that you are using on parties page are stretched , if you check the image frame you can see that.
    As a result the image frame is stretched over the side image , they are not showing properly. If you resize from Muse end , then also it would not be fixed because Muse remembers the image size as you have inserted and when viewed , Muse stretches the image to original size as how it was inserted.
    Please resize the images outside Muse , use any image editor like Photoshop and then use the exact dimension of the image frame on page.
    This would resolve the issue.
    Thanks,
    Sanjit

  • Image gallery/slideshow

    Hi,
    i want an slideshow/gallery for my site,
    the perfect one is at http://uk.msn.com/
    it's the first thing you see when you get there.
    I've looked around and can't find a tutorial for it anywhere,
    Does anyone know how this is made
    or can give me a link to a tutorial?
    Thanx

    MSN is probably using something proprietary.  Below you'll find some free slideshow and image gallery solutions that might work for you.
    http://www.1stwebdesigner.com/resources/57-free-image-gallery-slideshow-and-lightbox-solut ions/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Having trouble with my filters in the filter gallery not all working on the image.

    Bas relief filter is not adjusting all the layers.  It is applying the filter to a white screen.  The underlying image does not show through.  I did this successfully yesterday - can't figure out what went wrong.
    The image is in RGB color, 8 bit, and I've tried to do this in both TIFF and PSD formats. 
    I have been creating images by opening the image and then immediately going into the bas relief filter and applying the filter.  This time, when i do that, the preview image in the filter panel goes completely white.  I can see very, very faintly that there is the design in there, as though the design is hidden well behind a thick layer of white.  I adjust the sliders, and it doesn't help.
    To make matters worse, it's doing this for a few of the filters!  Some of them work just fine, and some don't!
    Where I used to be able to go through the entire filter gallery and see how every filter would love on an image, now many of them just show a white screen when I try to apply them, so I know that it's not only the bas relief filter.
    I have a job to turn out - so I need to figure out what I've done wrong!
    Thank you very much in advance for your help!

    OK - that is the problem!  I can't thank you enough!!!
    Another question - I have the other file that is exactly what I want to
    duplicate.  Is there a way that I can go into the other file and see the
    color settings for foreground and background that existed prior to the
    change and duplicate them?
    I was working on several different files that look quite similar, as I was
    adjusting the color to have lighter varations.  They all started out the
    same, though.
    It looks like the File>Info shows the process of changes, and I would love
    to know what the settings were before the changes- what the settings were
    when I opened the file.
    Again, I can't thank you enough!

  • Image gallery in DW-5

    Using DW-5, is there a way to create an image gallery like the one at this link
    http://www.katherinelove.com/frset_gallery.html
    the most important thing is to have the thumbnails contain the entire image, not just a cropped bit, and the popups need to have a description of the image.  otherwise, the site design can change, which in this case it needs to do!

    Fancybox is a jQuery plugin.  You won't find any automatic slideshow features in DW because it is a web authoring app; not a photo gallery app.
    See Primer for Using jQuery Plugins:
    http://alt-web.blogspot.com/2012/11/primer-for-using-jquery-plug-ins.html
    Nancy O.

  • Help! I need a special image gallery!!

    Hello!
    anyone know if you can make an image gallery with thumbnails and where each one is linked to a photo slide? Also require that the thumbnails act as a color button, not appear like a thumbnail photo. I need help! Thanks in advance!
    PD: sorry for my english skills!!!

    Hello,
    You can use Blank Composition Widget to achieve this.
    Seems like you are trying to create something similar to : http://muse.adobe.com/widgets/composition/slideshow-ouatt.html
    You can insert your images in the Target containers and can use Fill colors for different states of trigger containers.
    Please refer to the video which might help : http://tv.adobe.com/watch/muse-feature-tour/muse-trigger-target/
    Regards,
    Sachin

  • Muse CC crashes loading images into a slideshow

    Hi,
    I am having a problem with Muse crashing. I am starting with an empty page in an otherwise empty site, I insert slideshow, then click load images in the slideshow settings window. I have gotten this to work with very small numbers of files, but never with more than about 24. Usually I get this error dialog almost right after I browse to and select the group of images to load:
    Each image is approximately 350K. I am running Windows 7 Professional 64-bit with 8GB RAM. Does anyone know what my problem might be?
    Thanks in advance!

    I'm not sure what you mean by "optimize those images," would you mind explaining a little bit? I'm new to this.
    I could import a few at a time, but I have a gallery of thousands of images and I'd rather not go that route, if
    I can help it.
    Thanks for your tips, hoping I can find a good solution.

  • Serious help needed fixing an image gallery

    On my page
    http://www.dorff.nl/clients.html
    ive put this very nice gallery..
    The only problem is. I divided the gallery in 6 groups. But in every group you will see the same images. How can i change the images for each group seperately?
    I hope you understand what i ment.
    Regards Brian

    How i can use the four files you have send me?
    In dreamweaver im getting the message...
    lightbox.css is not on the disk
    prototype.css is not on the disk
    scriptaculous.css is not on the disk
    lightbox.js is not on the disk
    Date: Thu, 12 Apr 2012 12:37:39 -0600
    From: [email protected]
    To: [email protected]
    Subject: serious help needed fixing an image gallery
        Re: serious help needed fixing an image gallery
        created by adninjastrator in Dreamweaver - View the full discussion
    Here are 4 files you need:http://www.olympicdiscoverytrail.com/style_sheets/lightbox.csshttp://www.olympicdiscoveryt rail.com/style_sheets/prototype.jshttp://www.olympicdiscoverytrail.com/style_sheets/script aculous.js?loa d=effectshttp://www.olympicdiscoverytrail.com/style_sheets/lightbox.jsHere is an entire web page with working multiple galleries:
    Photo Gallery 1
        !images/125/paw_Carrie-Elwha.jpg|title=Elwha River Valley approaching the bridge|height=93|alt=Elwha River Valley approaching the bridge|width=125|src=images/125/paw_Carrie-Elwha.jpg|border=0!
    Photo Gallery 2
        !images/125/sw_IMG_1115-Downtown-Trail.jpg|title=Trail near High School close to downtown Sequim|height=83|alt=Trail near High School close to downtown Sequim|width=125|src=images/125/sw_IMG_1115-Downtown-Trail.jpg|border=0!
       </div>     <!-- close main_container -->
    </div>
    </body>
    </html>Here is a link to that working page on-line:http://www.olympicdiscoverytrail.com/trail_maps/slideshow.htmlThere is not much more I can do!You'll have to take the bull by the horns and start coding!Copy/Paste this HTML code into a new, blank page and edit the paths to all the .css, .js, and image files.Best of luck!Adninjastrator
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4330648#4330648
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4330648#4330648. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for

  • Trasfer posting w.r.t material document

    Dear All, Can we do transfer posting w.r.t MIGO (GR-101) using t.code MIGO_TR or MB1B. i try do do TP but system is not allowing 1) with T.code MIGO_TR system is giving msg: Selected material document does not correspond with action to be executed Me

  • SUP-Error creating Unwired Server Connection connection to MyUnwiredServer

    Hi all, I've installed the SUP 1.5.2 and selected the Evaulatiuon (30 day trial) and my Unwired Server cannot start. When i try to test the connection in Enterprise Explorer -> Unwired Servers -> My Unwired Server i get the error. com.sybase.uep.admi

  • Loss in pdf output quality

    Hello I have just 'upgraded' my computer.  I used to work on XP, now I'm on W7. When I create a pdf the quality of eps and png files is greatly reduced in quality. This applies if I use Adobe pdf or cute pdf. I have attached a file:

  • Sales shouldnt be allowed to chnage once invoice iscreated.

    hi, sales shouldnt be allowed to chnage once invoice iscreated and posed.I mean it should not allow addition of new line item or increase in quantity in sale order. Regards alec

  • Failed to fetch express pluggable data source

    Dear Friends, I am encountering the following the error while running the reports. REP-4102: Failed to fetch pluggable data source. java.lang.NumberFormatException: 75,000000 I am using an Express Query in this case. The same report runs perfectly wh