Slides in slideshow are fuzzy

When I view my slides in Organizer, they are sharp. When I assemble the same slides into a slideshow, the images are fuzzy and indistinct. What am I doing wrong?

The Video CD format that Photoshop Elements uses to burn a slide show to a CD disc in a video format is low resolution. It is the characteristic of that format that it is low resolution. This has been true for Photoshop Elements 3, 4, 5, 6, 7 as well as the predecessor Photoshop Album 1 and 2. You can not fix this.
Especially if you plan to play back your slide show on a large size TV screen or a high resolution computer monitor: you need to use a different output format and in many cases you must choose additional or different software to make your slide show.
There are a few possibilities if you have only Photoshop Elements; however, many people will either not have the necessary hardware or will wish to share with others by sending them a disc to play on the recipients TV. Therefore, many people can not choose these options.
1 -- If you will play back only on a computer, you can investigate using the PSE slide show Output command to make a WMV file output at a higher resolution.
2 -- If you have a Media Center computer connected to a TV or an HDMI connection from computer to TV, you may be able to play a similar WMV output file on your TV.
On the subject of other software :
1 -- Adobe offers Premiere Elements (which is basically video software) for making TV playable slide shows burned to a DVD disc (so you must have a DVD burner hardware also).
2 -- Many people have instead chosen to use ProShow Gold, which does have multiple output formats that are higher resolution and therefore can produce higher quality images on computer monitors and large screen TVs.

Similar Messages

  • I am making a slide show, but when importing pic from organizer, they are fuzzy??

    I am making a slide show, but when importing pic from organizer, they are fuzzy??

    You need this forum: Community: Premiere Elements | Adobe Community
    You are in the Premiere Pro forum now.

  • Fox news slideshows are not working in Vista Home 64 bit.

    All fox news slideshows are not working since firefox 3.6 started. I can't get them to work in Internet explorer either.
    == URL of affected sites ==
    http://

    Error: $.ad is undefined
    Source File: http://www.foxnews.com/static/all/js/slideshows-pack.js
    Line: 850
    // Slideshows - updated: 04/30/2010
    // Dependencies: jQuery, jfoxCarousel plugin
    (function($){
    function SlideShows() {
    this._data = {}; // slideshow data
    this._info = {}; // current slideshow info
    this._relatedMedia = {}; // related media data
    this._trackData = false;
    this.initialized = false;
    this.toolTipId = "carousel-tooltip";
    this.defaultTrackFrequency = 1; // tracker trigger
    this._preloaderSrc = "/static/all/img/slideshow/slideshow-preloader.gif";
    this._timer = { // timers
    main: { fadeIn:800 },
    carousel: { fadeIn:300 },
    overlay: { onLast:10000,fadeIn:300,fadeOut:300 }
    this.currentFocus = 1; // current item in focus
    this.holderObj = {}; // holder for elements
    this.hashObj = {}; // hash location holder
    this.imgPreloadObj = {}; // holder for preloaded images
    // carousel object controllers
    this.carouselControlObj = {};
    this.overlayControlObj = {};
    this.trigger = { // listeners
    main: false,
    carousel: false,
    overlay: false
    this.overlayTimeout = false; // overlay timeout holder
    SlideShows.prototype = {
    init: function(config) {
    for (i in config) { this['_'+i] = config[i]; }
    this.main.root = this.carousel.root = this.overlay.root = this;
    this.hashObj = this.helper.getHash();
    if (typeof $.fn.jfoxCarousel<u>'undefined') {
    showToConsole("[init] Error: carousel plugin not found!");
    if (this._trackData) { // set tracking data
    sTracker.set(this._trackData);
    sTracker.track("pageLoad"); // page load tracker
    this.preload();
    this.setHolders();
    this.initialized = true;
    preload: function() {
    var preloadImg = new Image();
    preloadImg.src = this.preloadSrc;
    setHolders: function() {
    var SH = this;
    var slideshowElm = $("#slideshow");
    this.holderObj = {
    doc: $(document),
    body: $("body"),
    intro: $("#section-intro"),
    main: slideshowElm.find("#main-img"),
    mainHolder: slideshowElm.find(".slideshow-placeholder"),
    mainControl: slideshowElm.find(".slideshow-controller"),
    description: slideshowElm.find(".slideshow-desc"),
    relatedMedia: slideshowElm.find(".slideshow-related"),
    carousel: slideshowElm.find(".slideshow-feature .slideshow")
    this.holderObj.intro.each(function(){
    var intro = $(this);
    intro.find("h1:first").html(SH._info.title);
    intro.find("p:first").html(SH._info.dek);
    if (this.holderObj.main.size()>0) {
    this.main.properties.minHeight = this.holderObj.mainHolder.innerHeight(); // get set height as "min-height"
    this.main.build();
    if (this.holderObj.carousel.size()>0) {
    this.carousel.build();
    $(document).ready(function(){ // wait for page load for the overlay
    SH.holderObj.overlay = $("#slideshow-overlay");
    var set = (SH.holderObj.overlay.size()>0) ? (typeof $.fn.jfoxCarousel!=='undefined') ? SH.overlay.set() : false : false;
    SH.setDocReadyListeners();
    this.setListeners();
    setListeners: function() {
    var SH = this;
    var control = this.holderObj.mainControl;
    // main image controls
    control.find(".prev").click(function(){
    SH.main.prev();
    return false;
    control.find(".next").click(function(){
    SH.main.next();
    return false;
    if (typeof touchEventListener!=="undefined") {
    var listenerConfig = {
    elm: SH.holderObj.mainHolder,
    moveSensitivity: 15,
    eventsCallback: {
    touchmoveMoveOnce: function(direction,moveProperties,rawEvent) {
    // move callback - sensitivity
    var directions = direction.join("|");
    if (directions.indexOf("left")>-1) {
    control.find(".next").trigger("click");
    if (directions.indexOf("right")>-1) {
    control.find(".prev").trigger("click");
    touchEventListener.append(listenerConfig);
    setDocReadyListeners: function() {
    var SH = this;
    // browse slideshow overlay
    $(document).ready(function(){
    $("#section-intro .additional-slides a").click(function() {
    SH.overlay.show();
    return false;
    SH.holderObj.overlay.find(".close a").click(function(){
    SH.overlay.hide();
    return false;
    replaySlideshow: function() {
    var SH = this;
    //TODO: build replay
    this.overlay.hide(); // hide overlay
    this.main.build(this.currentFocus = 1); // reset focus
    sTracker.track("replaySlideshow");
    // main image holder
    SlideShows.prototype.main = {
    properties: {},
    build: function(slide,origin) {
    var SH = this;
    var root = this.root;
    if (root.trigger.main) { return false; }
    root.trigger.main = true;
    slide = slide || false;
    origin = origin || "main";
    var control = root.holderObj.mainControl;
    var data = root._data;
    var initData = false;
    var desc = [];
    var helper = root.helper;
    if (slide) {
    if (slide 0) { desc.push('Source: ' + data.items[slide].source + ''); }
    root.holderObj.description.html(desc.join(""));
    // load related media
    if (root._relatedMedia.items) {
    var rmItems = root._relatedMedia.items;
    if (rmItems.length>0) {
    var rel = [];
    rel.push('Related Articles');
    for (var x=0; x 0) {
    root.currentFocus--;
    SH.build(root.currentFocus);
    sTracker.track("clickPrevMain"); // tracker
    if (!SH.isLast() && root.overlayTimeout) { clearTimeout(root.overlayTimeout); } // clear overlay timeout
    isLast: function() {
    var root = this.root;
    return (root.currentFocus+1 > root._data.items.length) ? true : false;
    // carousel
    SlideShows.prototype.carousel = {
    build: function() {
    var SH = this;
    var root = this.root;
    var carousel = root.holderObj.carousel;
    var data = root._data;
    var list = [];
    for (var x=0;x 0) {
    var li = $(".slideshow > ul",carousel).children();
    li.each(function(i){
    var el = $(this);
    var setClass = (i == eventObj.target-1) ? el.addClass("active") : el.removeClass("active");
    controlsCallback: function(control) { // callback to set up controls
    root.carouselControlObj = control;
    carousel.find(".prev").click(function(){ // previous link
    control.stopAutoScroll();
    control.slide('prev');
    sTracker.track("clickPrevCarousel"); // tracker
    return false;
    carousel.find(".next").click(function(){ // next link
    // show overlay on last carousel link
    //var lastLink = (!currentEventObj) ? false : (currentEventObj.batch.current+1 > currentEventObj.batch.max) ? $(document).ready(function(){ root.overlay.show(false,true); }) : false;
    control.stopAutoScroll();
    control.slide('next');
    sTracker.track("clickNextCarousel"); // tracker
    return false;
    carousel.jfoxCarousel(config);
    if (typeof touchEventListener!=="undefined") {
    var listenerConfig = {
    elm: carousel,
    moveSensitivity: 15,
    eventsCallback: {
    touchmoveMoveOnce: function(direction,moveProperties,rawEvent) {
    // move callback - sensitivity
    var directions = direction.join("|");
    if (directions.indexOf("left")>-1) {
    carousel.find(".next").click();
    if (directions.indexOf("right")>-1) {
    carousel.find(".prev").click();
    touchEventListener.append(listenerConfig);
    // overlay
    SlideShows.prototype.overlay = {
    set: function() {
    var root = this.root;
    var overlay = root.holderObj.overlay;
    overlay.find(".slideshow-feature").each(function(){
    var carousel = $(this);
    var allItems = carousel.find(".slideshow ul").children().children();
    allItems.each(function(){
    var div = $(this);
    var link = div.find("a:first").attr("href");
    div.hover(function(){
    div.css("cursor","pointer");
    },function(){
    div.css("cursor","");
    }).unbind("click").click(function(){
    window.location.replace(window.location.hostname + link);
    var config = {
    auto: { set:false,speed:3000 }, // auto scroll
    slide: "horizontal", // horizontal or vertical
    scroll: 3, // number of items to scroll per event
    show: 3, // items shown
    speed: "slow", // scroll speed
    rotate: false, // rotate back to star if end
    //focus: { item:0,animate:false }, // focus to target item on load
    eventCallback: function(eventObj) {
    if (eventObj.batch.current</u>1) {
    carousel.find(".prev").addClass("inactive");
    } else {
    carousel.find(".prev").removeClass("inactive");
    if (eventObj.batch.current<u>eventObj.batch.max) {
    carousel.find(".next").addClass("inactive");
    } else {
    carousel.find(".next").removeClass("inactive");
    controlsCallback: function(control) { // callback to set up controls
    root.overlayControlObj = control;
    carousel.find(".prev").click(function(){ // previous link
    control.stopAutoScroll();
    control.slide('prev');
    sTracker.track("clickPrevOverlay"); // tracker
    return false;
    carousel.find(".next").click(function(){ // next link
    control.stopAutoScroll();
    control.slide('next');
    sTracker.track("clickNextOverlay"); // tracker
    return false;
    carousel.jfoxCarousel(config);
    if (typeof touchEventListener!=="undefined") {
    var listenerConfig = {
    elm: carousel,
    moveSensitivity: 15,
    eventsCallback: {
    touchmoveMoveOnce: function(direction,moveProperties,rawEvent) {
    // move callback - sensitivity
    var directions = direction.join("|");
    if (directions.indexOf("left")>-1) {
    carousel.find(".next").click();
    if (directions.indexOf("right")>-1) {
    carousel.find(".prev").click();
    touchEventListener.append(listenerConfig);
    show: function(delay,isReplay) {
    isReplay = isReplay || false;
    delay = delay || false;
    var root = this.root;
    if (root.trigger.overlay) { return false; } // if already open
    var SH = this;
    delay = (isNaN(delay)) ? 0 : delay; // delayed show
    root.overlayTimeout = setTimeout(function(){
    SH.setReplay(isReplay);
    if (root.main.isLast()) {
    root.holderObj.overlay.fadeIn(root._timer.overlay.fadeIn,function(){ root.trigger.overlay = true; });
    sTracker.track("showOverlay"); // tracker
    else {
    root.holderObj.overlay.fadeIn(function(){ root.trigger.overlay = true; });
    },delay);
    hide: function(delay) {
    delay = delay || false;
    var root = this.root;
    if (!root.trigger.overlay) { return false; } // if already closed
    delay = (isNaN(delay)) ? 0 : delay; // delayed hide
    setTimeout(function(){
    root.holderObj.overlay.fadeOut(root._timer.overlay.fadeOut,function(){ root.trigger.overlay = false; });
    sTracker.track("hideOverlay"); // tracker
    },delay);
    setReplay: function(isReplay) {
    var root = this.root;
    var overlay = root.holderObj.overlay;
    var firstList = overlay.find(".slideshow-feature .slideshow ul").children().filter(":first");
    var divs = firstList.children();
    var replayDiv = divs.filter(":first");
    var cloneDiv = replayDiv.next();
    function configInfo(elm) {
    var currentSS = root._data.items;
    var info = root._info;
    var count = currentSS.length;
    var first = currentSS[0];
    var slideshowTitle = (info.title.length > 16) ? info.title.substring(0,16) + "..." : info.title;
    var slideshowImg = first.media.tm;
    var slideshowDate = info.title.date;
    function replay() {
    root.replaySlideshow();
    var items = elm.children();
    items.filter("p.photo-count").html(count + " image" + [[count>1) ? "s" : ""]];
    items.filter("p.date").html(slideshowDate);
    items.filter("p.photo").each(function(){
    var item = $(this);
    item.find("a").attr({ href: "#", title: slideshowTitle });
    item.find("img").attr({ alt: slideshowTitle, src: slideshowImg });
    items.filter("h4").each(function(){
    var item = $(this);
    item.find("a").attr("href","#").html(slideshowTitle);
    items.find("a").unbind("click").click(function(){
    replay();
    return false;
    elm.hover(function(){
    elm.css("cursor","pointer");
    },function(){
    elm.css("cursor","");
    }).unbind("click").click(function(){
    replay();
    return false;
    if (replayDiv.children().size()</u>0) {
    replayDiv.html(cloneDiv.html());
    configInfo(replayDiv);
    if (isReplay) {
    replayDiv.addClass("active").show();
    cloneDiv.hide();
    } else {
    replayDiv.hide();
    cloneDiv.show();
    SlideShows.prototype.helper = {
    toNum: function(item) {
    item = (isNaN(item)) ? parseInt(item.replace(/[a-zA-z]/gi,""),10) : item;
    return isNaN(item)?0:item;
    imgLoad: function(obj,fn) {
    var SH = this;
    obj.alt = obj.alt || "";
    if (obj.preload && !$.browser.opera) { // opera =/= img.onload
    if (obj.mainHolder) { obj.mainHolder.css({ background:"url("+obj.preloaderSrc+") no-repeat center" }); }
    var img = new Image();
    obj.holder.css({ display:"inline", opacity:"0" });
    img.onload = function() {
    if (obj.outer) {
    if (img.height > SH.toNum(obj.outer.minHeight)) { obj.outer.holder.css("height","auto"); }
    else { obj.outer.holder.css("height",obj.outer.minHeight); }
    obj.holder.attr("src",obj.src).animate({ opacity:"1"},obj.speed,"linear",function(){
    if (obj.mainHolder) { obj.mainHolder.css({ backgroundImage:"none" }); }
    $(this).attr("alt",obj.alt);
    fn();
    img.src = obj.src;
    } else {
    if (obj.mainHolder) { obj.mainHolder.css({ backgroundImage:"none" }); }
    obj.holder.css({ display:"inline", opacity:"0" });
    obj.holder.attr({
    src: obj.src,
    alt: obj.alt
    }).animate({ opacity:"1"},obj.speed,"linear",function(){ fn(); });
    getHash: function() {
    var hash = (window.location.hash).substr(1);
    if (hash) {
    var pairs = hash.split('&');
    var valuePair = {};
    for (var x=0;x 1 && callback && count%freq<u>0) {
    callback(data);
    var sTracker = new Trackers(); // private
    function showToConsole(str) {
    if (typeof window.console</u>'object') { console.log(str); }
    var slideShowsPack = window.slideShowsPack = new SlideShows();
    })(jQuery);
    // Tracking Data Here
    var trackData = {
    ads: {
    buildSlide: {
    frequency: 1,
    callback: function() {
    $(document).ready(function(){
    if (typeof $.ad.dc.load!=="undefined") {
    $.ad.dc.load();
    omni: {
    buildSlide: {
    frequency: 1,
    callback: function(data) {
    data = data || false;
    if (!data) { return false; }
    if (!data.slideNumber) { return false; }
    if (typeof $.ad.omni.load!=="undefined") {
    $.ad.omni.load({ "slide": data.slideNumber });
    var initializeSlideShow = window.initializeSlideshow = function() {
    if (typeof slideshowData!=="undefined") {
    if (!slideShowsPack.initialized) {
    slideShowsPack.init({
    data: slideshowData,
    info: slideshowInfo,
    relatedMedia: relatedsData,
    trackData: trackData
    } else {
    if (typeof window.console==='object') { console.log("[error] No Data found for: slideshowData"); }
    This the line highlighted:
    if (typeof $.ad.dc.load!=="undefined") {

  • PICTURES ARE FUZZY WHEN IMPORTED TO DVD DISC

    I'm new to creating dvds.  Pictures are fuzzy when imported to dvd disc ( memorex DVD-R).  What am i doing wrong?

    Hi
    Hard to say as You don't suply any info on
    • What photo file format, size You use
    • How You go from photo to iDVD
    And ! - Please do not Yell ! - Capitalized letters = Yelling in most forums and here a low and polite conversation most often will get better and more rapid results.
    Some thoughts about DVD Quality
    • DVD can only be SD-Video what ever tool used to encode it. And that is much less than what Your Mac screen can show.
    • Tools used to create the SlideShow - give a very different (quality) result
    iMovie'08 to 11 - discard every second line = less resolution
    iMovie HD6 and FinalCut - full interlaced video over to iDVD (as good as it can be)
    FotoMagico™ _ Great and even more so if result is burned as a Blu-Ray Disk
    Some notes follows - if You are of interest.
    DVD quality
    1. iDVD 08, 09 & 11 has three levels of qualities. (version 7.0.1, 7,0.4 & 7.1.1)
       iDVD 6 has the two last ones
    • Professional Quality (movies + menus up to 120 min.) - BEST
    • Best Performances (movies + menus  less than 60 min.) - High quality on final DVD
    • High Quality (in iDVD08 or 09) / Best Quality (in iDVD6) (movies + menus up to 120 min.) - slightly lower quality than above
    About double on DL DVDs.
    2. Video from
    • FCE/P - Export out as full quality QuickTime.mov (not self-containing, no conversion)
    • iMovie x-6 - Don't use ”Share/Export to iDVD” = destructive even to movie project and especially so
    when the movie includes photos. Instead just drop or import the iMovie movie project icon (with a Star on it) into iDVD theme window.
    • iMovie’08 not meant to go to iDVD. Go via Media Browser or rather use iMovie HD 6 from start.
    3. I use Roxio Toast™ to make an as slow burn as possibly eg x1 (in iDVD’08 or 09  this can also be set)
    This can also be done with Apple’s Disk Utilities application.
    4. There has to be about or more than 25Gb free space on internal (start-up) hard disk. iDVD can't
    use an external one as scratch disk (if it is not start-up disc).
    5. I use Verbatim ( also recommended by many - Taiyo Yuden DVDs - I can’t get hold of it to test )
    6. I use DVD-R (no +R or +/-RW)
    7. Keep NTSC to NTSC - or - PAL to PAL when going from iMovie to iDVD
    8. Don’t burn more than three DVD at a time - but let the laser cool off for a while before next batch.
    iDVD quality also depends on.
    • DVD is a standard in it self. It is Standard Definition Quality = Same as on old CRT-TV sets and can not
    deliver anything better that this.
    HD-DVD was a short-lived standard and it was only a few Toshiba DVD-players that could playback.
    These DVDs could be made in DVD-Studio Pro. But they don’t playback on any other standard DVD-layer.
    Blu-Ray / BD can be coded onto DVDs but limited in time to - about 20-30 minutes and then need
    _ Roxio Toast™ 10 Pro incl. BD-component
    _ BD disks and burner if full length movies are to be stored
    _ BD-Player or PlayStation3 - to be able to playback
    The BD-encoded DVDs can be play-backed IF Mac also have Roxio DVD-player tool. Not on any standard Mac or DVD-player
    Full BD-disks needs a BD-player (in Mac) as they need blue-laser to be read. No red-laser can do this.
    • HOW much free space is there on Your internal (start-up) hard disk. Go for approx. 25Gb.
    less than 5Gb and Your result will most probably not play.
    • How it was recorded - Tripod vs Handheld Camera. A stable picture will give a much higher quality
    • Audio is most often more critical than picture. Bad audio and with dropouts usually results in a non-viewed movie.
    • Use of Video-editor. iMovie’08 or 09 or 11 are not the tools for DVD-production. They discard every second line resulting in a close to VHS-tape quality.
    iMovie 1 to HD6 and FinalCut any version delivers same quality as Camera record in = 100% to iDVD
    • What kind of movie project You drop into it. MPEG4 seems to be a bad choice.
    other strange formats are .avi, .wmv, .flash etc. Convert to streamingDV first
    Also audio formats matters. I use only .aiff or from miniDV tape Camera 16-bit
    strange formats often problematic are .avi, .wmv, audio from iTunes, .mp3 etc
    Convert to .aiff first and use this in movie project
    • What kind of standard - NTSC movie and NTSC DVD or PAL to PAL - no mix.
    (If You need to change to do a NTSC DVD from PAL material let JES_Deinterlacer_3.2.2 do the conversion)
    (Dropping a PAL movie into a NTSC iDVD project
    (US) NTSC DVDs most often are playable in EU
    (EU) PAL DVDs most often needs to be converted to play in US
    UNLESS. They are play-backed by a Mac - then You need not to care
    • What kind of DVDs You are using. I use Verbatim DVD-R (this brand AND no +R or +/-RW)
    • How You encode and burn it. Two settings prior iDVD’08 or 09
    Pro Quality (only in iDVD 08 & 09)
    Best / High Quality (not always - most often not)
    Best / High Performances (most often my choice before Pro Quality)
    Yours Bengt W

  • I was just forced to "upgrade" iphoto, and most of my slideshows are gone.  What is going on?  I'm desperate here.

    I was just forced to "upgrade" iphoto, and most of my slideshows are gone.  What is going on?  I'm desperate here.

    Thanks for the reply.
    It wouldn't open unless I clicked "upgrade."  The other option was "cancel." The Genius at the Apple Store said I had no choice.  The new stuff looks idfferent but maybe it's just taking a while to go through all my photos.  I can't tell what is going on exactly, but I'm nervous to see the last slideshow there is 2010. 
    We are backed up on Carbonite, but the hoops to go through getting specific items back seems daunting to me.

  • My iPad colors are fuzzy with lots of reds and purples.  Did this once before and cleared up.  This time it won't clear up.  Any suggestion?

    My iPad colors are fuzzy with lots of reds and purples.  Looks like my digital camera when it needs to be recharged if that helps describe the issue.  Can anyone help?

    Next step is to back up and restore via iTunes. If the problem continues, restore as a new device and test. If the problem is solved, there is some kind of corruption in your backup file. If it continues, take it to an Apple store for evaluation of a possible hardware problem.

  • Slideshows are Choppy in Front Row

    Hi all, thanks in advance for any advice you may have.
    I can view slideshows smoothly when played directly from iphoto. However, when I view the same slideshow from within Front Row, there is a slow down when transitioning from one image to the next. This means the show gets out of sync with the music. I use the slideshows for my business, so this is unacceptable.
    I'm fairly certain that this started happening with I upgraded to from Leopard to Snow Leopard.
    Any ideas on what I could try to fix this would be greatly appreciated.
    Thanks,
    Andrew

    Welcome to the Apple Discussions. Have you also inquired over in the Front Row forum? Your situation hasn't been discussed before here as far as I can tell.
    Try clearing out iPhoto's cache folder, User/Library/Caches/com.apple.iPhoto, and rebuild the library's database, backup and launch iPhoto with the Command+Option keys depressed to rebuild the library. Select the last three options.
    Click to view full size
    See if that makes any difference.
    If the slideshows are critical you might want to consider creating them as QT movies so the music stays in sync and playing the movies in Front Row.

  • Adobe Reader screen images are fuzzy or out of focus

    The screen images in an Adobe Reader document are fuzzy or out of focus.  How can I sharpen them?

    Thanks:
    The Fonts & Colours option worked wonderfully for me and now my pages are displaying the colour and images I expected to see. So very simple in the end. Is it related to the current upgrad? At least I will not have to trouble with attempting to revert to an earlier version.
    Bruce

  • HT4710 When copy my IPhoto 7.1.5 Library on my desk computer and open it on my laptop w/IPhoto'09, many albums/slideshows are lost because of compulsory "upgrade." Help!

    When copy my IPhoto 7.1.5 Library from my IMac and open it on my MacBookPro, which has IPhoto'09, many albums/slideshows are lost because IPhoto '09 insists that I click on 'upgrade' before it will open the 7.1.5 Library.   Help!

    The library is damaged in some way.
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 

  • Can I make slides in slideshow larger?

    Since upgrading to iWeb '08 just yesterday, I cannot believe how much worse the photos look on the website! They seem to be less sharp and the slide show photos are not much bigger than the thumbnails. The pause button is HUGE unnecessarily, I think. Can I make the slides larger? They're mostly for my Dad and he needs large.

    I agree, the slide shows in iWeb '08 are not an improvement to the suite. In fact, it's quite terrible. When I upgraded to '08 it changed all of my settings to show off it's new fancy "reflection" feature and added the "subscribe" button to everything. Nothing I wanted. In fact, the only reason I upgraded iWeb was to get the simple feature of having outside weblinks open up in a new window. (Something that should have been standard to begin with!) And now I have to deal with crappy slide shows.
    Does anybody know how to make the slide show images as big as they were in the last version? Is there a way to use the older version of slide show in '08?
    Thanks.

  • I am using elements & premiere 12 on my PC using windows 7.  My problem is that photos in portrait view in slideshow are OK but when I move the slideshow to premiere to edit included video the portrait photos turn side-on and stretch when still in portrai

    I am using elements & premiere 12 on my PC using windows 7.  My problem is that photos in portrait view in slideshow are OK but when I move the slideshow to premiere to edit included video the portrait photos turn side-on and stretch when still in portrait view.  Is there any way to prevent this from happening?  Any comments would be appreciated.

    Bruce369
    What is the Output option that you are selecting for the transfer of the Elements Organizer 12/12.1 slideshow to Premiere Elements 12/12.1 Editor?
    If you are using Edit with Premiere Elements output option, are you using the Premiere Elements command to break apart the Elements Organizer slideshow and then applying rotation to the portrait files? Or, it is this more than just a photo rotation matter?
    More on this in the morning.
    Please review and consider.
    Thank you.
    ATR

  • My FCP titles are fuzzy, even after rendering.

    Creating some simple titles in FCP. They are fuzzy and look unrendered. I've tried rendering them every way I can. They don't show as needing rendering.
    How can I get these titles to render and appear normal (i.e. not fuzzy)?
    These are simple text titles, not a crawl or anything like that.

    Try using boris title3d. You need to understand the difference between vector and bitmapped graphics. Boris title3d allows you to work with "vector" text which will create the text for each frame at high resolution as long as you use the control tab to reposition and resize.
    It's much more flexible than the text generator.

  • Exported slideshows are faded

    using LR5 Win7/64
    when i export the pictures alone, they are fine, but when exported in a slideshow they look dull and faded. The black appears about 70% gray (just guessing) and the colors lack any vibrance. Repeat: i have no trouble with the pictures when i export them individually. The preview looks beautiful: black black and snappy colors.
    i am not seeing any options on export except as pdf or video, and i've tried changing the resolution to the highest to no avail.
    it's embarrassing, because i gave them as gifts to my neighbor's family. They were shots of their mother's beautiful flower-garden on the day she passed. So i'm really needing help!

    i can't, because slideshows are humungous, but i can link you to it on vimeo, if that's ok?
    i am curious as to whether my monitor needs calibrating. It's so hard to know. But on the slideshow preview and individual published photos, the colors are bright and the blacks are black. In the slideshow they are faded. It may be subtle if you don't have the black blacks to compare to. Which argues against the problem being my monitor. Maybe it's in LR conversion to mp4?
    thank you so much!
    here's the link: https://vimeo.com/70149591

  • When using iPhoto edit, pictures are fuzzy

    When I download photos from my SD card they are downloaded clear, then I hit edit in iphoto and pictures are fuzzy. In Apeture and Preview they are clear.

    You should be able to click and drag/drop the albums into the order you wish.

  • Full screen preview and slideshow are blurry / fuzzy

    Hi folks-
    I just upgraded from CS2 to CS4, in part to improve efficiency of selecting photos - I wanted the zoom and loupe features. Unfortunately a very basic function has been compromised and I'm hoping there's a solution: In both full-screen preview and slideshow the full-screen image is notably blurry. This is a problem for two reasons: 1. I can't judge pictures accurately by just flipping through them in full-screen mode (without zooming to 100% to see if they are well-focused). 2. I can't use Slideshow for, well, slideshows. I've had to resort to keeping another app (like Windows Picture Viewer) open just to be able to quickly flip through and evaluate images full-screen or to show slideshows.
    I've tried setting all the options related to image quality (they mostly have to do with caching thumbnails and speeding 100% viewing); I've tried purging the cache files. Nothing helps.
    Any ideas?  Thanks!

    It seems to me that there is something wrong with it.
    I am trying Bridge CS4 as a viewer for my JPEG files.
    I also noticed that the previews were fuzzy. I activated the high-quality previews as well as the option to generate the previews at screen size.
    Here's what I noticed. I went to check out a specific photo that is quite sharp with a number of straight lines, angles, details, where it's very easy to detect a lack of sharpness. That photo immediately looked fuzzy to me, which didn't jive with my memory of it. I quickly opened it in other viewers, which displayed it as intended with all the expected sharpness.
    So, I went through the settings to see where the problem could be and I immediately thought of checking the box to get software previews instead of hardware, restarted the app, purged the cache, tried again. There my photo had recovered its sharpness, or at least most of it. I thought I found the culprit, but not quite.
    I went to browse other photos and found one in particular with a lot of fine detail (hair) and that photo also didn't display all the sharpness that it should have (I was still using software mode). The difference was very slight and to make sure of it it required A/B comparison between Bridge and PS, but there was a difference.
    Now I tried the opposite. I went back to hardware rendering mode, restarted, purged the cache, tried again. That second photo looked alright in preview, but the previous photo looked fuzzy again.
    So, it doesn't work the same way for each photo...
    What's the main difference between the first photo, obviously fuzzy in hardware mode, and the second one, alright in hardware mode but slightly fuzzier in software? The ratio. The first one is a vertical photo, the second one is horizontal (close to square).
    I quickly checked other vertical photos and they showed the same behavior...
    Now staying in hardware mode, I noticed something else. When I preview the vertical photo and click on it, or double click, it quickly jumps, switching between 2 versions of the photo: the one displayed originally (fuzzy) and another one, with a very slightly different size, which is sharp. During that manipulation it also briefly displays "100%" at the top of the screen. It doesn't stick when you click and immediately switches back, so it looks like a glitch.
    Now in software mode, I tried the same, this time you can click once on the photo (which is originally displayed *almost* sharp). When you click once, it displays "100%" but also displays a very slightly smaller version that is clearly fuzzy. Clicking again goes back to the other, less fuzzy one, but doesn't display "100%" this time.
    Doing the same test on horizontal photos shows no change that I can see.
    So, it seems to me that in the preview mode, Bridge has trouble displaying some photos (vertical ones?) in their actual resolution (100%)
    and since there is a slight resizing going on, it brings fuzziness. This doesn't explain the very slight fuzziness seen on horizontal photos in software mode.
    Now I'll mention, for those still awake, that I saw no fuzziness on the same vertical photos when I go to Review Mode with *hardware* rendering. Photos there are sharp. Now if I go to the review mode with software rendering enabled, vertical photos are not 100% sharp (akin to the small difference I mentioned earlier while in software mode), while they are sharper in preview.
    To sum up, it seems that the only configuration that gives me consistently 100% sharp (=as they were meant to be after post-processing) photos no matter what their orientation, is when I stay in hardware rendering mode and use the Review Mode, instead of preview.
    This all really smells like a bug.
    For info, I am using Windows 7 and an ATI HD4850 card, and this only about processed JPEG files, not RAW files.
    Perhaps the preview is really meant as a quick preview and not a tool to view final photos at 100% accuracy...

Maybe you are looking for

  • Shiiping/Export mapping problem in SAP B1

    Hi all: My present client(SE) has a case of transaction where in for the case of Export they based on Sales Order they directly use to create A/R Invoice (Commercial) after which they send this Commercial Invoice to Exporter(agent) who further book t

  • Can't print with Snow Leopard and Acrobat version 8

    I have checked this page out: http://kb2.adobe.com/cps/509/cpsid_50981.html It contains instructions for Version 9. I have version 8. I followed the instructions anyway for deleting the printer but the "save as Adobe pdf" did not appear as the page s

  • Importing photos from Firefox

    So I'm dragging photos of friends from fb webpages using firefox to the doc icon of iPhoto, and iPhoto keeps wanting to import the same pictures over and over again, even though I'm only doing one picture at a time. How do I stop this behavior? It is

  • Lumpsum discount for ED subtotal before VAT in MIRO

    Dear all, How to give lumpsum discount after Excise duties subtotal,based on that total VAT is calculated in vendor bill booking ? Expecting ur valuable replies. Jeyakanthan Edited by: Jeyakanthan A on Jan 12, 2010 10:26 AM

  • ALSB - Java Callout (.jar using commons-httpclient-3.1)

    Hello everyone, I'm having a not so funny problem. I made a Java class, that will be called by a Proxy Service (Java callout). I'm using the commons.httpclient-3.1.jar (+ codec and logging). Here's the code: package util.http; import org.apache.commo