Why is iPhoto playing slides in reverse order?

Using Mavericks. Apparently others have this issue. Classic mode, dissolve. User order.

Is this a 1st or 2nd gen shuffle, or a 3rd or 4th gen shuffle?  This article shows the four types.
http://support.apple.com/kb/HT1719

Similar Messages

  • Why synchronizing to ipod it puts album play listing in reverse order

    why is it when i synchronize from the pc to my ipod let say a complete album it puts reverse order of play please help any ideas

    Hi there,
    I'm having the same problem as this original post but reading the reply/answer i stil have no idea what has gone wrong or how to rectify it?
    Never had a problem for years untill now.
    Any other things this could be?
    Thanks
    Paul

  • IPhoto slideshow shown in reverse order

    I've looked at this problem on Apple Support and many other areas but I cannot show a slideshow in the order that the photos are in the library.
    I'm using Macericks and iPhoto 9.5.1.
    No matter which photos I select they are always shown in reverse order when I click 'Slideshow" at the bottom of iPhoto or when I create a new slideshow.
    I've tried all the suggetsions, repairing phtot library etc, but still no luck.
    Any help would be appreciated.

    When you are playing your slideshow, click the screen to bring up the vido controls, like this:
    Click the "gears"-icon to reveal the settings.
    In the "Settings"  tab disable "Shuffle Slide order" and enable "Use settings as default".
    Then play again. Does that bring the correct direction back?

  • Play Clips in Reverse Order

    I have clips A,B,C lets say for example. However I want to play it backwards meaning C,B,A. I do not want to just reverse playback the clips. I want to completely mirror clips A,B,C to play C,B,A.
    Do I need to copy and merge all the clips as one then reverse it? I appreciate the help ahead of time. thanks.

    Ann Bens, Thank you for your help. Also thank you for the "deleteing mulitple gaps" tutorial that I just found out about today.

  • Why do RefCursors return result sets in reverse order?

    Oracle XE version 10.2.0.1 (both windows and Linux perform the same).
    I'm porting code from DB2 to Oracle - our environment is mostly stored procedures returning REFCURSORS to a java layer. Many of the stored procedures return more than one REFCURSOR (please no posts on the value of packages vs procs, I understand the benefit but cannot switch at this time to packages). It took me a while to figure this out, but it appears that the cursors are returned in reverse order of their OUT param position(s). My fear is that this isn't always the case, but that the cursors could be open in some random order, in which case any conditional processing I have would need to account for that. Anyone experience this? Or can any Oracle guru explain why the cursors are open in reverse order? At this point in time, I do need to process them positionally rather than naming them -
    Here's a test case:
    CREATE TABLE TESTCUR(
    col1 NUMBER,
    col2 VARCHAR2(50)
    INSERT INTO TESTCUR VALUES (1, 'value for cursor 1');
    INSERT INTO TESTCUR VALUES (2, 'value for cursor 2');
    INSERT INTO TESTCUR VALUES (3, 'value for cursor 3');
    CREATE OR REPLACE PROCEDURE TESTREFCURSORMULTI (
      testcasenumber IN NUMBER,
      cv_1 OUT SYS_REFCURSOR,
      cv_2 OUT SYS_REFCURSOR,
      cv_3 OUT SYS_REFCURSOR
    AS
    BEGIN
         IF testcasenumber = 1 THEN
         OPEN cv_1 FOR
              SELECT col2
              FROM TESTCUR
              WHERE col1 = 1;
         OPEN cv_2 FOR
              SELECT * FROM DUAL WHERE 1=0;
         OPEN cv_3 FOR
              SELECT * FROM DUAL WHERE 1=0;
         ELSE
              IF testcasenumber = 2 THEN
              OPEN cv_1 FOR
                   SELECT col2
                   FROM TESTCUR
                   WHERE col1 = 2;
              OPEN cv_2 FOR
                   SELECT * FROM DUAL WHERE 1=0;
              OPEN cv_3 FOR
                   SELECT * FROM DUAL WHERE 1=0;
              ELSE
                   OPEN cv_1 FOR
                        SELECT col2
                        FROM TESTCUR
                        WHERE col1 = 1;
                   OPEN cv_2 FOR
                        SELECT col2
                        FROM TESTCUR
                        WHERE col1 = 2;
                   OPEN cv_3 FOR
                        SELECT col2
                        FROM TESTCUR
                        WHERE col1 = 3;
              END IF;
         END IF;
    END;
    set autoprint on
    var rc1 refcursor
    var rc2 refcursor
    var rc3 refcursor
    begin
    TESTREFCURSORMULTI(
    testcasenumber => 3,
    cv_1 => :rc1,
    cv_2 => :rc2,
    cv_3 => :rc3)
    end;
    /     Here are the results when opening all three:
    SQL> begin
      2  TESTREFCURSORMULTI(
      3  testcasenumber => 3,
      4  cv_1 => :rc1,
      5  cv_2 => :rc2,
      6  cv_3 => :rc3)
      7  ;
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    COL2
    value for cursor 3
    COL2
    value for cursor 2
    COL2
    value for cursor 1Results when opening 1:
    SQL> set autoprint on
    SQL> var rc1 refcursor
    SQL> var rc2 refcursor
    SQL> var rc3 refcursor
    SQL> begin
      2  TESTREFCURSORMULTI(
      3  testcasenumber => 1,
      4  cv_1 => :rc1,
      5  cv_2 => :rc2,
      6  cv_3 => :rc3)
      7  ;
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    no rows selected
    no rows selected
    COL2
    value for cursor 1

    It nothing more but the way how AUTOPRINT works:
    SQL>  set autoprint on
    SQL> var rc1 refcursor
    SQL> var rc2 refcursor
    SQL> var rc3 refcursor
    SQL> begin
      2  TESTREFCURSORMULTI(
      3  testcasenumber => 3,
      4  cv_1 => :rc1,
      5  cv_2 => :rc2,
      6  cv_3 => :rc3)
      7  ;
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    COL2
    value for cursor 3
    COL2
    value for cursor 2
    COL2
    value for cursor 1
    SQL> set autoprint off
    SQL> begin
      2  TESTREFCURSORMULTI(
      3  testcasenumber => 3,
      4  cv_1 => :rc1,
      5  cv_2 => :rc2,
      6  cv_3 => :rc3)
      7  ;
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> print rc1
    COL2
    value for cursor 1
    SQL> print rc2
    COL2
    value for cursor 2
    SQL> print rc3
    COL2
    value for cursor 3
    SQL> As you can see, right cursor returned right result, just autoprint in case of multiple variables prints results starting last open cursor:
    SQL> set autoprint on
    SQL> begin
      2  open :rc1 for 'select 1 from dual';
      3  open :rc2 for 'select 2 from dual';
      4  open :rc3 for 'select 3 from dual';
      5  end;
      6  /
    PL/SQL procedure successfully completed.
             3
             3
             2
             2
             1
             1
    SQL> begin
      2  open :rc3 for 'select 3 from dual';
      3  open :rc2 for 'select 2 from dual';
      4  open :rc1 for 'select 1 from dual';
      5  end;
      6  /
    PL/SQL procedure successfully completed.
             1
             1
             2
             2
             3
             3
    SQL> SY.

  • Just purchased a new iMac and transferred all info from my old iMac. Now when using iPhoto slideshow is displays the pictures in reverse order.

    Just purchased a new iMac and after transferring all info from my old iMac.  Now when using iPhoto slideshow it  displays the pictures in reverse order.

    There's a bug in iPhoto 9.5.1 and Mavericks that affects slideshows played directly from an album.  The slideshow will not play correctly if the photos have been sorted manually.  Any other type of sort, date, rating, keyword or title, will play correctly.
    If you need that manual sort of pictures for your slideshow create the slideshow in iPhoto's slideshow mode.
    OT

  • Reversing Order of Slides in Slideshow

    We were finalizing a slideshow and went into Settings and must have accidentally clicked some shortcut - our entire 124 slide slideshow reversed in order.
    Does anyone know what happened? More important, how can we reverse this?
    Thanks.

    Welcome to the Apple Discussions. Select all of the photos in the top tray in the slideshow mode and then drag the first slide to the end of the tray and that will reverse the order.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Slideshow playing reverse order

    Just upgraded to iPhoto '11 and when I click on an event and choose slideshow, it begins to play in reverse order (most recent first). My main Events homepage is set to sort descending by date and my photos are all ascending by date within the individual events. When I change the main Events view to ascending, it plays in the correct order, however I like my most recent events coming up first...I noticed I can get around this by opening the event and selecting the first photo and then starting slideshow. Is there something I am missing or is this just something I have to get used to?

    Had same issue but selecting first photo is also what worked for me. I always thought you had to select all the photos in the event, album, etc... to include in the slideshow, but apparently that is not the case.
    As an aside, I can't figure out what activates manual sort. It seems to come and go (greyed out or not) depending on whether I am in an event, album, smart album, etc...

  • How do I get my ipod to play a playlist from reverse order? (Start with recently added song instead of first added)

    How do I get my ipod to play a playlist from reverse order? (Start with recently added song instead of first added)
    So I'm adding new songs to a very old playlist? Is there anyway that when I add them, they automatically go to top of playlist? How about getting one song to the top of a playlist.  That drag to arrange function is very annoying because it is slow and the playlist does not scroll up very well on a PC.

    Make a new playlist by pressing the little plus button at the very lower left corner of iTunes. An new playlist will appear in the Source pane called "untitled playlist". While the name is highlighted, you can change it to whatever you want. Drag all of the tracks from all the albums that comprise a single book to that playlist. Sync that playlist to your iPod.

  • My I-Pod plays all podcast in reverse order such as 3.2.1 no matter how I arrange them in I-Tunes.  How do I get my I-Pod to play in the proper 1,2,3 sequence?

    My 3rd gen I-Pod plays all podcast in reverse order, even if I manually try to load it.  I will only automatically play in 3,2,1 order.  Even brought it to the Apple Store and they couldn't figure it out either.  Even bought another I-Pod and still plays in reverse order.  Any ideas out there?
    Thanks in advance for any help, Ty

    They did not order the podcasts correctly in the playlist then.  Several people, including myself, have been able to play podcasts in sequential order. 
    When viewing the playlist in iTunes, look to the far left of each episode. There should be a number next to it.  This is the ordering of the playlist.  Sort the playlist in sequential order and view the numbering along the leftmost column and see if the ordering matches up as desired. If they don't, you'll need to drag and drop tracks until they are.
    Once the ordering is as desired, right->click on the playlist and choose Copy to Play Order. Then resync the playlist over to your iPod.
    B-rock

  • When downloading updates from iTunes to my iPhone my playlists appear in reverse order with least played at the top. I just want the playlist to appear in the same order as my iTunes library. This seems to have changed after downloading iCloud

    When dowloading updates from my iTunes library onto my iPhone
    my playlists appear in reverse order with the least played at the top of the list
    and most played at the end on the playlist.
    Therefore I cant play my favourites in the order that I like to hear them.
    This all changed when I recently downloaded the iCloud application.

    Hi Jim,
    Is this temporary cache accessing my data when I play songs from it? As I mentioned in my previous post, I'm still able to listen to these songs even when my phone is in airplane mode and the download icon is still present next to said songs. This implies that the songs are already downloaded onto my phone even if I didn't opt to download them directly from the cloud -- they're on my phone because my phone was shuffling my library on a wifi network.
    Dan

  • Why does iPhoto change the sort order of the photos in my album when I attempt to share via Photo Stream?

    Why does iPhoto change the sort order of the photos in my album when I attempt to share via Photo Stream?

    Did anyone find a good way to sort the shared albums better, so that the ones you share with can better find their way around.
    You can arrange them manually in an album, select all and use the Photos ➙ Batch Change ➙ Date to menu option and check the box to add a set interval between photos. That will let the photos be sorted by date and be in the order you want:
    OT

  • Why does iPhoto not give me the option of ordering a medium size soft cover book?

    why does iPhoto not give me the option of ordering a medium size soft cover book?

    This is the iPod touch forum. There are two iPhoto forums, one for iOS iPhoto and the for OSX iPhoto. Try posting in the appropriate one

  • My video that was taken with a digital camera and imported into iPhoto plays back at a very fast speed. Any ideas why?

    My video that was taken with a digital camera and imported into iPhoto plays back at a very fast speed. Any ideas why?

    Is it a slow motion video? iPhoto does not understand the slow motion tags created by some cameras, eg.g. the iPhone back camera.

  • Slides show suddenly reversed order

    Slides show suddenly reversed order. I must have hit some key that reversed my order of slides from the first slide switching to the last and so forth. can someone tell me what's going on. thanks. idvd 5... will idvd 6 fix this?

    Hi Nicholas,
    click the first image in the filmstrip on top
    Command click each image after that until you get to the last image.
    Now drag that first image to the end of the film strip and the other images will follow. Once you drop it in the end, your images should be in the right order....hopefully.

Maybe you are looking for

  • Outlook Calender and iphone sync not working properly (windows 7 os)

    I try to sync through itunes and contacts work fine, but the calender only comes through partially. Single events work fine, but events (on outlook) which extend more than a day are completely ignored by itunes sync and don't show up on the iphone ca

  • EPM 11.1.2 with Windows 7 and Office 2010

    Hi all, We are getting majorly upgraded to Windows 7 and Office 2010 soon. We use EPM 11.1.2 suite of products. Will all the end-user web applications still work? I already found out that Smartview 11.1.2 is not supported for Office 2010. Does anybod

  • Large PDF files for vehicle graphics

    Hi, Acrobat Experts I have created the design for graphics on the side of a truck. The file is created in Indesign and the background photo is a 278 MB TIF made in Photoshop at 210dpi in full size. The size of the file is 409 cm by 210 cm. The printe

  • How to get Fennec full screen from the android project's source code?

    Hi, First and foremost, I'm sure this was not the proper category to post that question but I couldn't really figure out a better one. Hopefully you'll forward it to a better place. We would like to take the advantages of Fennec with out HTML5 framew

  • Meaning of sqlnet, listener and tnsnames

    I am a newbie. what is the purpose of sqlnet. what is meaning of i the listener: SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (SID_NAME = PLSExtProc) (ORACLE_HOME = C:\oracle\product\10.2.0\db1) (PROGRAM = extproc) what is the meaning of in tnsnames: