Muse slideshow -random image sizes

when I add multiple images (same size!) to a slideshow, they show up in different sizes and I just can't figure out why?!
fisrt image in thumbnail
and the large image:
second image in thumbnail:
and its large counterpart:
it doesn't help to manually resize the image for two reasons:
1. I have to do that with hundreds of images, and it's very labour intensive. I assume there is an automated method. It doesn't work though with graphic styles as to change the image size one has to select it (orange border line).
2. sometimes it jumps back to the original small size after I've resized other images.
pretty frustrating

Hi Kruczy, Try using Photoshop Actions and Batch Processing.

Similar Messages

  • Why are some (but not all) of my Muse slideshow widget images rotated differently than when I edited them in Photoshop CC?

    I have a few dozen photographs embedded in the slideshow widget. Most of them appear exactly as I edited them in Photoshop, but several appear rotated clockwise 90 or 180 degrees. Does anyone know why this is happening, and ideally, how I can correct this problem? Thank you.

    Please share the site url , also refer to this post and check if this helps :
    Why are some of my images importing upside down?
    Secondly , if you change the fill type then does that makes difference ?
    Thanks,
    Sanjit

  • How do I set the default Hero image in a Muse slideshow widget when using Free Form Thumbnails?

    Hello,
    I am trying to find out how to set the default Hero image when using a Muse slideshow widget and in the Layout section I have the "Free Form Thumbnails"
    box checked.
    In other words, when the page loads I want to define which image displays as the first Hero image.
    If I do not select the "Free Form Thumbnails" option, the top left Thumbnail image always displays first. This is fine.
    But when I select the Free Form Thumbnails" checkbox I don't know how to define which image shows first as the Hero image.
    I have a short video at this link where I illustrate the question:
    http://amson.org/misc/default-hero-image-1.mp4
    I have added a WMV video file at the link below:
    http://amson.org/misc/default-hero-image-1.wmv
    Okay… I think I've worked out how to do it!
    [1] First have the "Free Form Thumbnails" box UNCHECKED.
    [2] Organize the Thumbnails and place the image that you want to be the first Hero image when the page loads in the top left corner of the Thumbnails group.
    [3] When you "Preview Site In Browser" the Thumbnail image in the top left corner will always display as the first Hero image.
    [4] If you want "Free Form Thumbnails" go ahead now and SELECT that checkbox.
    [5] Whichever image was in the top left of the Thumbnail group before you checked "Free Form Thumbnails" will still show up as the first Hero image when the page loads, regardless of where that thumbnail image is located within the Thumbnail images group.
    Thanks very much.
    Chris.

    Hi,
    The sequence of operation you are doing to set the home page for public users is correct. You are getting the login screen as the "custom page group" selected as "home page" has not been granted to public.
    Also, while logging-out, it is normal behaviour to get the screen where it shows the list of partner applications from where user has been logged-out. When you click on "Return" button, you will get to the "home page" set above.
    Hope it clarifies the things.
    Regards,
    Ved

  • How can I fix the image size in a "Picture Library Slideshow Web Part"

    When I upload images to be used in the Slideshow Web Part they become skewed because they are different sizes. Is there a way to fix this besides uploading images that are all the same size? 
    Thanks,
    Kathleen

    http://webcache.googleusercontent.com/search?q=cache:bfUcFkD_bxgJ:spcodes.blogspot.com/2012/08/display-slide-show-images-within-fixed.html+&cd=4&hl=en&ct=clnk&gl=in
     Display Slide Show Images within fixed size
    The Picture Library Slide Show Web Part show the images stored in a picture library with slide show effect.
    This slide show web part displays the images with it's original size. Due to this the web part changes its size according to the image size. If we want the slide show to run within the specific size on the page then we need to control the size of the images
    to the fixed length during runtime.
    To achieve this we need to add the CEWP above the picture Library Slide Show web part & insert the following script in that web part.
    <style type="text/css">
    .ms-WPBody TD {
        PADDING-BOTTOM: 0px; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px; PADDING- WIDTH: auto !important; PADDING-RIGHT: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; HEIGHT:
    auto !important; VERTICAL-ALIGN: middle; BORDER-LEFT-WIDTH: 0px; PADDING- 0px
    .ms-WPBody TD DIV {
        PADDING-BOTTOM: 0px; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px; PADDING- WIDTH: 100% !important; PADDING-RIGHT: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; HEIGHT:
    auto !important; VERTICAL-ALIGN: middle; BORDER-LEFT-WIDTH: 0px; PADDING- 0px
    .ms-WPBody TD IMG {
        PADDING-BOTTOM: 0px; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px; PADDING- WIDTH: 260px !important; PADDING-RIGHT: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; HEIGHT:
    190px !important; VERTICAL-ALIGN: middle; BORDER-LEFT-WIDTH: 0px; PADDING- 0px; align: center
    .s4-wpcell-plain {
        PADDING-BOTTOM: 0px; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px; PADDING- WIDTH: 100% !important; PADDING-RIGHT: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; HEIGHT:
    auto !important; VERTICAL-ALIGN: middle; BORDER-LEFT-WIDTH: 0px; PADDING- 0px
    .ms-PartSpacingVertical {
        MARGIN-"color:#783f04;font-family:'Courier New',Courier,monospace;" />}
    .style1 {
        COLOR: #808080
    }</style>
    We can fix the height & width of the image in the .ms-WPBody TD IMG css.
    http://sharepoint.stackexchange.com/questions/66028/picture-slideshow-web-part-image-size-too-small
    How to display original images in SlideShow web part
    Step 1. Save below JavaScript code to file, for example in SlideshowObjectInitializer.txt and upload it to SiteAssets Library
    <script type="text/javascript">
    function SlideshowObjectInitializer() {
    ShowPic = (function(ShowPicOrig) {
    return function() {
    var ssObj = arguments[0]; //SlideShow object
    var curPicIdx=ssObj.index; //current picture index
    ShowPicOrig.apply(this, arguments); //call original ShowPic
    //apply some changes to display original picture in SlideShow control
    ssObj.image.src = ssObj.linkArray[curPicIdx]; //display original image instead of web image
    //change picture & container size to auto instead of fixed (by default web image size is used)
    ssObj.image.setAttribute('height','100%');
    ssObj.image.setAttribute('width','100%');
    var cell = ssObj.cell;
    cell.style.width = 'auto';
    cell.style.height = 'auto';
    cell.style.display = '';
    var pcell = ssObj.cell.parentNode;
    pcell.style.width = 'auto';
    pcell.style.height = 'auto';
    })(ShowPic);
    ExecuteOrDelayUntilScriptLoaded(SlideshowObjectInitializer, 'imglib.js');
    </script>
    Step 2. Add CEWP on page where Slideshow web part is located and in the Content Editor tool pane, under Content Link, type
    /SiteAssets/SlideshowObjectInitializer.txt. 
    If this helped you resolve your issue, please mark it Answered

  • IE incompatible ? Image size.

    Hi,
    I know very little about HTML, CSS and the like but as a photographer I upload gallery webs all the time for clients etc. I generate these in PS CS2 or iView MediaPro and then upload to my server (shared web hosting).
    With a current project requiring a 'site' type environment I decided to try iWeb. Before visiting this site please note that due to image sizes with iWeb it's a bit on the heavy side and if you're using IE on a PC BEWARE of crashes! Safari may even crash as has done with me.
    http://www.kura-images.com/camping
    Remarks and problems :
    1. As you can see my site does not resemble any iWeb template - using the 'modern' template I basically threw everything away and designed from scratch. It's a great WYSIWYG appli in that sense - no code - just drag and drop, resize, add some effects etc. I published regulary to a folder as a way of double checking but was impressed with the 100% WYSIWYG capability of iWeb
    2. Image size is a MAJOR problem. My concerns are specifically with the gallery pages generated from the photo page temps. Thumbnails at 16ko is too big and the motor that generates the large image files uses a single parameter (800pixels largest dimension) that cannot be changed in any pref settings etc. It also uses a compression factor which is a tad too high. Using Image Ready or the PS gallery web function (driven by Image Ready) I can get as good visual quality for my web-optimised JPEGS for 65% of the file size.
    Note : I tried this file swap as a test
    I changed one image in the folder for the "activités" page (activities_008) - I made a smaller thumbnail in ImageReady and created a 600pixel version of the large file; I replaced the images in the folder with these and checked the site. The thumb appears no problem in a smaller size (btw 6ko vs 16ko - that's a big diff when you apply it to 250 images !). SlideshowJS however has instructions to open the image at main size as determined by the slideshow index file creation generated by iWeb. And that's written as 800pixels. So on opening the 600 pixel image I'd replaced, slideshowJS opened it to 800pixels (not pretty). The only way to rectify that was to go into the source code in the relevant 'activités' js file, find the codeline for the image 008 and change the values manually. And I'd have to do that with 250 line of code ! That rather defeats the prupose of having a nice easy application to produce your galleries.
    3. Upload to my server via Transmit was trouble-free. No problems publishing to a non .mac server.
    4. Problem with the page titles. The names you give to pages determines the URL. Any spaces means you get the %20 thing and if, like me, you're writing in French the accents mean that iWeb has to get around the problem in a different, and not very practical, way. iWeb creates a random character line as a name, and uses that as the URL for pages where accents appear in the title. When the assets and index page are published those long character names appear on the index file and folder.
    I also think that may lead to compatability issues with certain servers.
    5. But here's the BIG PROBLEM !
    I had 4 people with PC's and IE (God bless 'em) check out the site. 2 reported repeated crashes of IE (unexpectedly quit exe. error). No problems with the homepage - just when clicking on some of the photo pages. What is really strange is that neither had problems when accessing the 'La Soirée' page, but both had problems with all the others. Apparently the crash came after IE tried to load the page, succeeded in loading a few thumbnails and then stopped and crashed 5-10secs later.
    6. EVEN WORSE !
    I have gone back to my site several times, emptying Safari cache each time, and have succeded in stalling definitively Safari's attempts to load certain pages. Just stops with partial page upload. I then have to quit Safari and re-open to be able to access any web page (even other sites). Sometimes it's OK, sometimes not.
    This site goes officially live on wednesday morning but for now it's a no-goer. Just too erratic and not IE compatible.
    PLEASE, any suggestions ?
    Many thanks in advance
    Peter
    G5 2Ghz   Mac OS X (10.4.5)  

    4. Problem with the page titles. The names you give
    to pages determines the URL. Any spaces means you get
    the %20 thing and if, like me, you're writing in
    French the accents mean that iWeb has to get around
    the problem in a different, and not very practical,
    way. iWeb creates a random character line as a name,
    and uses that as the URL for pages where accents
    appear in the title. When the assets and index page
    are published those long character names appear on
    the index file and folder.
    I also think that may lead to compatability issues
    with certain servers.
    Yes, it is best to avoid spaces and accents and special characters if you can. If you must have them in your navigation links, then don't use the iWeb nav bar. Instead give your pages very short simple names with the Inspector, uncheck the box for "include in nav bar," and just create ordinary hyperlinks for page navigation. I don't know if this will help with IE compatibility, but it can't hurt.

  • Muse Slideshow

    Hi,
    Does anyone know of a way to make a slideshow inside of Muse scalable depending on Browser size? I.e. when someone goes from 30% to 75% say, the slideshow will change size too? I only ask as I have a slideshow positioned in the top right corner of a page (for the purposes of an effect), but when I scale up, the images don't and I end up with a gap. The rest of my page content is at 100% page width by the way.
    Thanks,
    Ethan S.

    Hi Rasmusguy,
    In addition to Gaurav's reply, you may also want to check the below link:
    https://helpx.adobe.com/muse/how-to/add-100-width-slideshow.html?set=muse--whats-new--2014 -06
    Regards
    Sonam

  • Lightroom Export Quality setting for best Muse slideshow optimization

    Hi,
    I am using Lightroom to prepare images that I will use in Muse slideshows--basic slideshow widget.  In LR, I have cropped virtual copies of everything to the exact proportion I need in Muse.  In the LR Export dialog, I use the Image Sizing dialog to set to my exact pixel dimensions for the images--784x560px, 72ppi.  That's for my desktop version, but I'm using the same images for my tablet and phone versions.  In the LR Export > File Setting dialog, I set JPG, sRGB.
    My question is this: What is the optimal QUALITY setting in the LR Export > File Settings dialog to produce the smallest file size and maintain excellent image quality in Muse webpages?  The QUALITY slider goes from 0 to 100.  Furthermore, since my tablet and phone slideshows are smaller than the desktop slideshow, would I be wise to produce another set of images in LR for each of the three formats, sized for the respective formats?
    Note that I am not using the HiDPI setting in Muse Site Properties > Content.
    Thank you for any help here.
    John

    Please check these links for details :
    http://tv.adobe.com/watch/learn-creative-cloud-for-photography/upload-a-lightroom-web-gall ery-to-business-catalyst-using-muse/
    https://forums.adobe.com/thread/1726663
    Thanks,
    Sanjit

  • Recommended Image Size for Contact Pictures?

    Hi All,
    I want to edit up some family members to attach thier images to my iPhone contacts... Does anyone know what the preferred resolution size is for the iPhone for optimal appearance?
    I've tried to do this with outlook before, and I hate the way it dithers the images to a low quality.... I'm hoping that the iPhone doesn't do this and so I wanted to experiment with how they would appear...
    But instead of making the images just any random size, I wanted to crop them to the preferred image/pixel size so that my photoshopped images look like what I expect them to show up like...
    If you could advise with the documented or known pixel resolution size used by the iPhone it would be appreciated!

    Thanks, but I don't believe that the contacts come up full screen do they?
    Usually there is a optimal image size for certain things like contact photos and I am just trying to help ensure that all my photos are the same size and don't vary...
    I might be a little carried away with how I am formatting them, but just hoping someone already knows this answer!

  • Scrolling thumbnails in Muse Slideshow?

    Is it possible to have only one row of thumbnails at the bottom of a slideshow that would scroll accross as the slideshow progresses?

    The thumbnails in Muse slideshows and compositions currently are only static and cannot be set to automatically scroll with the progression of images.
    This is currently a feature that is still being looked into and there are other posts regarding this. If you search for existing posts on a topic (http://forums.adobe.com/message/4777406#4777406) and add onto that, it increases the chances of a request getting priority rather than creating a new thread.
    Thanks,
    Vikas

  • Amusing little image size/dpi bug in CS5

    Has anyone else discovered PS CS5 applying nearly random dpi settings to newly opened documents?  This is not a destructive bug, as far as I can tell, but when I open "Image Size," PS will sometimes give me a whacko value for dpi (something like 1.2 or 3.4) with appropriately expanded dimensions.  I then reset the dpi to something sane (72, 300, whatever it ought to be), and the image dimensions return to what they ought to be.
    No biggee, but I don't like signs of random mischief in my software, and would like to find out if this is a known issue.
    I did, incidentally, run "image size" and "dpi" through the PS help forum search engine to see if this has been discussed recently.  Came up with a big "no" both times.  Seems like that's another piece of software that is largely decorative.
    Thanks for any light,
    Richard Hurley
    Grass Valley MultiMedia

    Haven't seen that, but there are bugs in, for example, the JPEG writing software in some cameraphones.
    I had one phone that insisted all the photos taken with it were at zero dpi. That caused some problems.
    I had a different phone which reported that all photos taken with it were at something like six-million dpi. Closer inspection of the file revealed that it was trying to write some fairly normal dpi, but was getting the byte-order wrong.
    If your new images are coming from the same device or application, it might be worth checking the documents in Preview.app, and doing a "Show Inspector" (command-I) on the image and see what Preview thinks about it.

  • FCE/DVD Slideshows - Distorted Images

    Despite reading the many posts regarding pixel aspect ratios and distorted images, I remain very confused about how to solve my problem.
    I use FCE to create slideshows on DVD from still photos, but try as I might, I cannot figure out how to avoid the distorted (squashed) images in the finished DVD.
    I use Lightroom and/or Photoshop to edit the images, then simply import them to FCE.  I export the slideshow using Quicktime Conversion, H.264 Compression, Dimensions of 1442x1080.  I use iDVD to convert the QT movie to DVD, for viewing on a widescreen TV. 
    I've tried the different options in QT Conversion to preserve the aspect ratio, to no avail.  Most recently, I used Photoshop to change the pixel aspect ratio to 0.9 in the jpeg files, but that seemed to make no difference in the distortion.
    I would very much appreciate any help you could offer.
    Thanks,
    DBennett

    I export the slideshow using Quicktime Conversion, H.264 Compression, Dimensions of 1442x1080.  I use iDVD to convert the QT movie to DVD, for viewing on a widescreen TV.
    This is a significant part of the problem.  If you intend to make DVDs then you must export from FCE to QuickTime Movie.  DO NOT export to QuickTIme Conversion.   While useful for many things, QT Conversion is not useful for transferring your video to iDVD or other DVD authoring tool.
    And as has been mentioned above, if you want your photos to fill a widescreen TV (ie, 16x9) then you need to start by creating a sequence using one of the highdef Easy Setups in FCE.  I'd recommend either one of the 720p30 or 1920x1080i60 Easy Setups.   (1440x1080 is an anamorphic Easy Setup and is probably also a source of your distortion.)   Of course, your images must  also be 16:9 aspect ratio if they are to fill the screen.  Don't scale up the images once they are in FCE.  As for image size, 1x to 2x the video frame size (in pixels) seems to be the sweet spot unless you are using a Ken Burns type of effect and need to pan across a very large surface area.

  • Looking for a random image extension

    Does anybody know of a good FREE extension that will put a
    random image inside a cell of a table?
    I'm actually looking to do two different things. The first: I
    want a random image from about 10 images to change every time the
    user reloads the page. The second: I want images from about 10
    images to fade up, stay on the page for a few seconds, then fade
    down and have another one of the 10 fade up, so on and so forth.
    If anyone knows of a free extension that will do this, I
    would love to know about it, thanks!

    This one works fine for me,
    * Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (
    http://www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit
    http://www.dynamicdrive.com/
    for this script and 100s more.
    hth

  • Hyperlink to slideshow hero image

    hi,
    how can I hyperlink to the slideshow hero image?
    please help me..

    Hi
    You can select the Hero Image and from Hyperlink drop down you can link the image, so that when users click on image will be redirected to link that you setup in Muse.
    Thanks,
    Sanjit

  • Muse Slideshow - How to get rid of persistent "stroke"

    Spent far too many hours trying to fix this, I am hoping there is an easy "A Ha" fix :-) Please!!
    No matter what I seem to do when the slideshow previews as it "settles" on the image in the sequence a white thin stroke appears. Seems to be in the active state... BUT READ ON!
    *YES! I have gotten rid of all strokes, of all shadows, glows etc under each state, ( as well in the EFFECTS) drop down,
    * Have resized my photos countless times in PShop and no stroke, clean edges etc
    * Tried all the options in the fly-out
    * Tried placing a black background as a rectangle
    * even got so desperate I placed thin rectangles on the edges of all the pics! That looked bad...
    Where is the magic fix?! Thank you :-)
    Muse Slideshow - Getting rid of non existent "Stroke"

    Thank you very much Abhishek for the reply!
    I'm finding that it is quite easy and perfect to redirect as you mentioned from Muse itself when you also build WEBSITE in Muse along with your phone / tablet version. However what I am struggling to find is a way to simply redirect a PHONE build to a persons hosting directory which that client already has set up somewhere... (godaddy etc.) I have several clients that already have a website and don't need a build on that but JUST want a mobile version.
    So how do you direct the phone build only to their directory? I can get access to it, put a "phone" folder in there but need the right way to redirect all devices.
    Thank you so kindly!
    HM

  • IWeb Image Size

    Hello Apple Friends,
    What's the easiest way to get iWeb images down to a reasonable size? The PNGs are just too big as they're created automatically. Is there a setting I can adjust somewhere? I hope I don't have to go in and manually shrink each image file with Photoshop of something.
    Thanks for your help,
    Steve

    Well for your already published images, you might want to take a look at PNG Crusher: http://www.amake.us/software/pngcrusher/
    You are supposed to use this directly on your published files, so just be aware of that.
    Going forward with your new pages and what not, the best thing to do would be to minimize the opportunities for iWeb to convert your jpg images to png. You do this by avoiding resizing the image inside iWeb (either smaller or bigger) and avoiding the special effects like drop shadows, rotation, reflections, frames, etc. At the very least, use iPhoto to size your photos down from their original full resolution size. Know that standard iWeb pages are only 700px wide, so that is as big as you need. For slideshows, iWeb would size everything to 800x600, so keep that in mind.

Maybe you are looking for

  • Error in running oracle report on APPS due to print style

    Hi i have an oracle report which displays about 550 rows of data...When i try to run it with oracle apps i selelect landwide but i get an error as the defined style can not print that much amount of rows.Is there any toher style which prints this man

  • Choose from List in A matrix for choosing two or more rows at same time

    Hi Friends, Actually I m using choose from list to select Items in a row, i can select Two or more rows from the List but while clicking choose it is taking only one value. The no of rows are not activated tat i m choosing from list. Thanks in advanc

  • SAP XI Acknowledgements

    Hello experts, I am a little confused on how SAP XI acknowledgements work (with asynchronous and synch scenarios) - with and without a BPM process. I know that when you define a sync or async scenario in ccBPM, you have options on how to define ackno

  • Safari 5.1.2 and .pdf files.

    Safari 5.1.2 opens .pdf files in Quicktime, not Preview. Why? How can I change it to default to Preview?

  • Best processor on the MBP?

    After my beloved MBP met a sudden and catastrophic death, will have to acquire a new one, so now I'm in the planning stage. Most of the important details are already in place: antiglare widespread screen, high speed 7200 RPM HDD, etc. However, I'd li