Season Out of Order

I am having a weird issue. The seasons of one show in my iTunes appear out of order. It only happens to one show, all the other display fine. I have been through the tags and everything is tagged correctly (right title, year, season, episode, etc). I've checked the sorting and it should be sorting them chronologically. In list view everything displays correctly, but in any other view it displays the seasons: 1, 4, 2, 3. Any thoughts?
Here are some screenshots to show you what is happening:

Nevermind. I just deleted the entire show and re-added the seasons one at a time in order and now it displays correctly. I don't know why it didn't work the first time and I don't know why it works now, but I'm happy.

Similar Messages

  • Out of Order TV Shows in iPod Classic

    Here's an interesting problem that's really more of an annoyance than a problem that I foolishly posted in the iTunes section and not in this one.
    For some reason on my 80gig iPod when I go into the tv shows I have such as Jericho it'll list it as normal, meaning that it starts with the Pilot and then lists each subsequent episode in the order that they aired on tv.
    Then I'll go into another tv show and when I come back to the Jericho playlist they're in reverse order meaning that the Season finale is the first one and the pilot is the last one on the list.
    My question is is this a commonn occourance and what can I do to correct it? I've tried rebooting my iPod but the problem still happens. I've also tried deleting and re-adding my tv shows to no avail. Like I said this is really more of an annoyance than a problem but any suggestions on how to correct this is much welcome.

    I have the same problem with Season 3 of Battlestar Galactica. It lists the episodes from newest to oldest except for the first 4 episodes of the season which are all out of order. It even lists the dates they were listed as correct but it won't put them in the correct order. I sent an email to apple about it and they said I may need to contact technical support and pay for help. I figured I'd just ignore it since Battlestar Galactica won't be on iTunes next season since it's an NBC/Universal show and NBC is pulling the content. Which ***** because I have a credit of 8 tv show episodes and I was saving them for Season 4 of Galactica.
    Todd

  • Out of Order TV Shows

    Here's an interesting problem that's really more of an annoyance than a problem.
    For some reason on my 80gig iPod when I go into the tv shows I have such as Jericho it'll list it as normal, meaning that it starts with the Pilot and then lists each subsequent episode in the order that they aired on tv.
    Then I'll go into another tv show and when I come back to the Jericho playlist they're in reverse order meaning that the Season finale is the first one and the pilot is the last one on the list.
    My question is is this a commonn occourance and what can I do to correct it? Like I said this is really more of an annoyance than a problem but any suggestions on how to correct this is much welcome.

    I have the same problem with Season 3 of Battlestar Galactica. It lists the episodes from newest to oldest except for the first 4 episodes of the season which are all out of order. It even lists the dates they were listed as correct but it won't put them in the correct order. I sent an email to apple about it and they said I may need to contact technical support and pay for help. I figured I'd just ignore it since Battlestar Galactica won't be on iTunes next season since it's an NBC/Universal show and NBC is pulling the content. Which ***** because I have a credit of 8 tv show episodes and I was saving them for Season 4 of Galactica.
    Todd

  • ITunes TV Shows are out of order in iPhone tab.

    I've been importing a TV Show Season from DVD into iTunes so I can watch the TV show on my iPhone at the gym. Everything works well, the TV shows are imported, I enter the meta-data for each show, title, episode #, etc.... When I look at my TV shows in the TV Shows tab in the side bar, they are all listed in order by episode number. Yet when I go to the iPhone tab in the sidebar, and the select the TV Shows tab to try and sync, all of the episodes are random and in no particular order at all. Maybe I'm just being OCD about it, but I want to watch the seasons in order and now I have no way to do this? Anyone have any thoughts?
    Thanks

    Just discovered your post, I made a similar post with the same problem, only concerning Podcasts and not TV Shows. I don't think you're being OCD about it at all. It's only logical to expect that if you can put the songs of a music album in a certain order and listen to them that way, that you should be able to do the same with a TV show or Podcast series.
    Check to make sure all of the following are set:
    Info tab: Track number
    Video tab: Show, Season Number, Episode ID, Episode Number
    The TV shows on my iPod are in the correct order, but the Podcasts are not. Unexpectedly, I think it may be the Track number from the info tab that keeps them in order. I just removed the track number from an episode and it went out of order.
    Message was edited by: Grandmaster Jesh
    Message was edited by: Grandmaster Jesh

  • TV episodes out of order

    All of my season 2 episodes of Prison Break are suddenly out of order. How can I put them back in order?

    I wish that I was writing to help, but I've had the same problem with the newest version of iTunes and even had problems getting to start up after I first installed it. I uninstalled it and reinstalled it at least 4 times before it worked. Then there was the aggravating problem with my shows being out of order. It was just within iTunes, but it also put the episodes on my iPod out of order as well. Check your iPod and see the episodes are out of order there, too. I've tried all the usual methods of arranging the files manually in iTunes and on my iPod, but no luck. At this point, I've uninstalled the newer version once more and reinstalled the previous version until iTunes fixes the issues. Considering that there are no major changes to the program and I've had more problems with it than successes, I see no advantage to having the new version on my PC.

  • Data written to socket getting lost?  or perhaps out of order?

    I'm trying to fix a bug in Flashmog. The bug is described in more detail here.
    Basically what is happening is that my Flash client claims that it is calling functions that don't arrive at the server -- or they arrive, but the socket data is out of order and therefore is garbled.  I've stared at the source code for hours and tried a lot of trial-and-error type stuff and added trace statements to see if I can find the problem and I'm not having any luck.
    In particular, there's class I have called RPCSocket that extends the AS3 Socket class so I can serialize data structures before sending them across a socket.  At one point, this RPCSocket class calls super.writeBytes and super.Flush.  It is the point at which I send all data out of my client. The data is binary data in AMF3 format.
              public function executeRPC(serviceName:String, methodName:String, methodParams:Array):void {
                   if (!this.connected) {
                        log.write('RPCSocket.executeRPC failed. ' + methodName + ' attempted on service ' + serviceName + ' while not connected', Log.HIGH);
                        throw new Error('RPCSocket.executeRPC failed. ' + methodName + ' attempted on service ' + serviceName + ' while not connected.');
                        return;
                   var rpc:Array = new Array();
                   rpc[0] = serviceName;
                   rpc[1] = methodName;
                   rpc[2] = methodParams;
                   var serializedRPC:ByteArray = serialize(rpc);
                   if (!serializedRPC) {
                        log.write('RPCSocket.executeRPC failed.  Serialization failed for method ' + methodName + ' on service ' + serviceName, Log.HIGH);
                        dispatchEvent(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, 'RPCSocket.executeRPC failed.  Serialization failed for method ' + methodName + ' on service ' + serviceName));
                   super.writeUnsignedInt(serializedRPC.length);
                   super.writeBytes(serializedRPC);
                   super.flush();
              } // executeRPC
    Can someone recommend a way for me to store without corruption, conversion, or filtering or translation of any kind *all* of the information sent across this socket? I'd like to write it to a file.  I'm guessing that keep a global ByteArray var and storing the info there might work, but I'm wondering how I might get the contents of that ByteArray into a file so I can inspect it.
    Also, I'm wondering if I might be able to inspect what flash actually sends out on the socket?  I have a sneaking suspicion that data I supply to super.writeBytes may be sent out of order or may not actually get sent across the socket.  This bug I'm talking about only seems to happen under high-stress situations when I'm sending dozens of messages per second across this one socket.

    oops...forgot link to bug description: http://flashmog.net/community/viewtopic.php?f=5&t=549

  • Photos syncing from folder to iPhone all out of order?

    I have 2 folders synced to my iPhone 4 photo app.
    They were previous camera rolls before I set up my phone as a new device. They are all named in order and taken in order, for example IMG_001.jpg was my first picture in my old camera roll. IMG_822.jpg was the last photo taken before I did the backup, and is the last in the folder.
    The folder I am syncing from on my windows computer displays all of the pictures by filename (and because of that, by date) but when syncing with iTunes they end up on the phone ALL out of order. I can't find any rhyme or reason to how they are displaying. Most of the earlier photos show up at the beginning like they should, and the last at the bottom of the scroll appear to be mostly right, but then it's completely random from there.
    I've tried unsyncing them, removing them, and then adding them back again and nothing seems to work. I've even tried renaming the IMG_xxx numbers to different things and they still appear to sync in the same random order.
    Am I doing something wrong, or is this a huge bug for someone with OCD like me? lol

    This is highly annoying.
    I have probably 15-20 Smart Albums in iPhoto 8.1.2 in OS10.6.4 that are syncing to iOS4.0
    On the old software, my Smart Albums for photos would show up AS the smart albums I created. Now they show up in the iPhone one giant mess called "Photo Library".
    I can view photos broken up under "Events" on the iPhone by specific dates, but the dates don't tell me what the name of the event was, and some Smart Albums had multiple dates grouped together in one Smart Album and I don't really want them broken out separately by date. I want them organized how I organized them...
    In short, I want my photos grouped the way I have explicitly grouped them. It used to work, it doesn't now.
    Since iOS4.0 I am also getting sync errors all the time in iTunes. "iPhone cannot be synced because the required file cannot be found." WHICH FILE??? tell me and I will delete it...
    I've rebuilt the entire database in iPhoto (took 4 hours). I've scanned iTunes and removed all broken links and duplicate files. I've scanned the hard drive with the disk tool. I've emptied the iPhone and reinstalled iOS4 on it 5 times. I've turned syncing off for all non-essential applications and stuff I don't actually sync like voice memos. Same problem.
    I think I want my iOS 3 back. I don't really like multitasking anyway, always having to turn off applications for the one or two times in a million where task switching if helpful...
    Ugh....

  • The music I sync into my iPod touch is all literally out of order and in the library it's not. Why is this?

    I checked the starting time for songs in the library and on my iPod and they all say 0:00. What I mean when I say it's out of order is for example, the first ten seconds are skipped and placed somewhere in the middle of the song and some other parts are skipped then played later. I didn't have this problem before I updated iTunes for my new iPod, now when I tried syncing onto my old iPod as well, the same thing happens. So there's nothing wrong with my iPod. I want to know how I can fix this on iTunes or if it's just a glitch on my iTunes?

    Something you can try is resetting it all Settings > General > Reset > Reset all settings. Or go to Settings > Store & sign out & log back in. Another thing you can do is restore your ipod. This has happened to me but the only thing i did was that i created a new account but try doing the things above i just told you. :)

  • Video and audio not sync when i play all forms of video. from music videos, to tv shows. but they play perfect on my iPod. and tv shows display out of order on iPod, but in correct order on iTunes/computer. I even ran a virus check just to make sure.

    audio and video do not syncronize.  all forms of videos. music videos to tv shows.  what do i need to do the syncronize them again
    they are in sync on iPod, but not on computer.
    another issue that might be from the same cause is, the order of episodes of the tv shows i have downloaded,   they appear in order on computer, but on iPod they show out of order.
    any tips on how to fix this would very much help.
    thank you.

    Welcome to Apple Discussions!
    An old version of iTunes will cause this and mess up the videos on your iPod. Always make sure you always use an up-to-date version of iTunes.
    Make sure all the software on your computer is up to date...
    iTunes
    iPod Updater
    Updating iPod's Software
    You will then need to restore the iPod and then let iTunes update your iPod and put your music, videos, etc. back onto your iPod...
    Restore the iPod
    btabz

  • Opening and closing stock with sales order and with out sales order

    hello,
    any body please help me my client want to check opening stock and and closing stock in areport.
    material contains batch and some material with sales order and some are with out sales order. my client is asking this in a single layout. please tell me isthere any teport or bapi or function module to get this report.
    this is very uregent. and layout is requesting like opening stock, production stock, sales stock and closing stock.
    please guide me to get this report.
    Thanks & Regads
    Bhakta

    Transaction MB5B
    For sales order related use specila stock as E and use radio button indicator in stock type
    For stock w/o sales order, use special stock indiactor as "space' and stock type valuated stock.
    to get a perticular month,opening stock/closing stock enter the start date/end date as month start and end date.
    See the o/p which will give the stock as required by you

  • Keys out of order -- follow up to earlier post

    I ran the install disc Disc Utility Test and the Hardware Test disc on the computer since I posted my first question earlier tonight "Computer won't finish start-up -- any suggestions". The Hardware Test came back fine. The Disc Utility test on the install disc says: Keys out of order. It does not, however, explain how to repair this problem on the hard drive.
    Is there any way to fix this problem on the hard drive?
    Power Mac G4 Quicksilver   Mac OS X (10.3.9)  

    Invest in DiskWarrior. I had the same problem and DiskWarrior fixed it. No other utility programs worked for this problem. DiskWarrior is very inexpensive. Ordered online in the afternoon. It was delivered to my office the NEXT morning.

  • Camera roll pictures are out of order after upgrading to iOS 8.1

    It's nice that iOS 8.1 brings camera roll back. However, pictures are out of chronological order. I'm using iPhone 5s. I upgraded iOS from 8.0.2 to 8.1, and noticed this issue.

    That's weird cause my videos are all interspersed with everything else like they used to be, which unfortunately means it's inconsistently screwing up too.  My pics start with 2007 (first year i got an iphone) then run up to about 2014 vaguely in order, then back to 2013 where everything's all out of order, then down to 2012 again (also out of order), then 2011, 2010, 2009 etc like it's running backwards to 2007.  Then once it hits 2007 again, it jumps to this past july.
    SO aggravating!

  • Is there a way to reorganize out-of-order tracks in iTunes 11?

    Hello all--
    In iTunes 10, if an album appeared with the track numbers out of order, I could just click on the track number tab within each individual album and the tracks would be resorted by track number. In iTunes 11, I can't find a way to do the same thing. For example, I imported an album and now it starts out with track 4, then goes to 15, etc., but can't get them to sort sequentially. Any help would be greatly appreciated.
    I tried looking at one out-of-order album in the "songs" view, based on a similar question, but every time I try to search for the album under "songs" iTunes shows the result under "albums".

    here is a link to macosxhints.com that tells you how to output all of your feed URLs to a terminal window. from there you can cut and paste them into your new feed reader of choice...
    http://www.macosxhints.com/article.php?story=20080319094830396
    and if you are in the marked for a new reader may i suggest David Watanabe's excellent NewsFire. he had just recently made it totally free as a gift to the macintosh community.
    best of luck.

  • Chapter marker thumbnails getting duplicated, out of order (FCPX 10.1.4)

    Group - I use FCPX to compile home movies of my kids, the pets, etc. I use footage from a Canon HD camcorder and an iPhone 6+. I import them into FCPX, trim, transition, maybe throw in some music, and usually put in 40 or so stills (JPEGS) at the end for a slide show.
    The project I'm working on now is around 2.5h long after editing and transitions. I put chapter markers at the beginning of each scene, and then drag the pin to set a custom chapter marker thumbnail.
    The issue - no matter what I do, I can't seem to get ALL of the thumbnails sorted properly. Meaning, I get one or two out of order, and numerous ones duplicate. I've rebooted, trashed prefs (opt-com start), copied all the clips into a new project and re-rendered, and even deleted them all and manually applied them all again. There are roughly 36 or 37 chapters in this project. I tend to get a different result each time, but with the same general problem.
    Sadly, iMovie worked pretty flawlessly for me, but I thought I'd enjoy the added capabilities of FCPX. The rendering time for this movie on a one year old iMac with 24GB RAM is around 7 hours at 720p, so as you can imagine, it's not been a fun project. I've attached a screenshot of the issue on my AppleTV for reference. I've seen a lot of history with this problem, though many threads proclaimed it 'solved'. I'd disagree. Anyone have any thoughts on what I am doing wrong, or is this just more stellar quality control from Apple?
    PS - Are there any recommended alternatives to FCPX? I'm noticing I use fewer and fewer Apple-branded apps, I'm starting to see a pattern here.... :^(

    Russ H wrote:
    …. Later I'll take a look.
    Discs are not my top-priority here, but I remember this rules (for iDVD):
    The Rules of Chapter Markers:
    *Make sure no chapter markers are within two seconds of the start or end of the timeline.
    *Make sure no chapter markers are within a transition.
    *Make sure no chapter markers are within two seconds of the end of a transition.
    *Make sure you do not have the "Share selected Clips" option checked when preparing to share to iDVD
    maybe, these rules were not by limitations of software, but by 'standard'?
    If you test it, try to what happens when you 'violate' these rules ...........

  • After syncing Pc-Ipad my Photo's are out of order. In the folders they don't follow the Date-order. I use Itunes 10.6.1.7 and Ipad 5.1. The Problem is the same with XP and Windows 7.

    After syncing PC-Ipad my Photo's on Ipad2 are out of order. In the Folders/Albums the Photo's are no longer in the order of (EXIF) dates. I have updated Itunes to 10.6.1.7 and IPad2 to 5.1. I have reset the IPad2. I cleaned the Photo-cache and removed Itunes and Installed again. I tried it with Windows 7 (64) and XP, makes no difference. I tried it with one Album, Photo's also out of order. It doesn't seem to happen with my Ipad1 older software version. I there a bug in the newest software? Thanks for Help!
    Rudy from the Netherlands.

    problem solved after updating itunes to 10.6.3

Maybe you are looking for

  • Two iPhones, one icloud ID for imessgae and facetime???

    I have two iphones, 3Gs and iPhone 5 and I am having problems activating the iPhone 5. The 3Gs has been activated and I can use it to send and recieve imessages but the iPhone 5 keeps telling me activation unsuccessful and when I check the send and r

  • How come itunes only downloaded part of a song?

    I bought a a couple of albums off of itunes and on one song (that i know of) on each album only plays part of the song. For example: if you have a 3:45 song it will only play 2:35 of the song and then it cuts off and moves onto the next song on the a

  • Sub contract po coproduct issue

    Hi All,       In sub contracting process one(raw material) material is supplying to vendor .During single punching the process we are getting 2 products & scrap.For this process we are paying some amount to sub contractor.     While raising the Sub c

  • Cannot play videos received from emails or dvds

    I downloaded the most recent version of Quick Time player, but I still can't seem to watch many videos. If someone sends me something by email, I usually cannot open it on my iMac. I have to go to my wife's PC to open and watch it. The same thing app

  • Run large script in sqlplus

    Dears, When i ran large script using sqlplus this error happened "ORA-06550: line 16370, column 2: PLS-00123: program too large (Diana nodes)" and please i need solution to run this script. the size of script is 17MB thanx Edited by: user12059086 on