TV Series bought not showing as season.

I bought the series Merlin Season 2.
It has downloaded all the episodes but shows up on my list as 'No Season'.
Why is this and can I change it?
It's annoying as when I browse it appears that I have not bought it.
Probably a bit OCD but would like it to match my other Merlin downloads.

Did you download it using iTunes for Mac, or did you download it on an iPod, iPhone or iPad, nyngsdal?

Similar Messages

  • Purchased tv series, but not showing up in?, purchased tv series, but not showing up in?

    Purchased a tv series but it is not showing up under tv shows or downloads any thoughts ?

    Did you download it using iTunes for Mac, or did you download it on an iPod, iPhone or iPad, nyngsdal?

  • My ipod 5 series is not showing airplay - it is connected to the correct wifi

    Can anybody help - my iPod touch is not showing the airplay icon.  It is connected to the correct wifi

    Troubleshooting AirPlay and AirPlay Mirroring
    Make you try powering off and then back on your Apple TV

  • HT201272 Records bought not showing my in my iTunes  library

    I have a record that I have bought on iTunes that shows present in my computer's library but it isn't there!
    How can I get my record back? I checked under "present o this computer" and it says it is there but it is not there....

    Yes, me too! It is really upsetting my that I have to manually add artwork to my iphone. Fix?

  • Programitically creating column series to flex chart not showing the chart

    I want to create n number of series dynamically when i run my
    application.
    where n can be any value it depends on the data which i
    retrieve from database. below i pasted the example
    ( in this example i have taken n = 4 i.e., CountMax=4 if i
    change the CountMax=6 then it should generate 6series dynamically
    after calculating the values. ). just copy the below code and paste
    it in Flex builder and run the application.
    in this example i am facing problem, chart series are not
    showing. i dont know the reason why its not showing, if anyone got
    the solutions for the problem please let me know. my actual
    requirement is to retrieve data from Salesforce account and want to
    populate the arraylist then display the chart.
    <?xml version="1.0"?>
    <!-- Example showing using mx:LineSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    [Bindable]
    public var sArray:ArrayCollection = new ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 6;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 1; i < 10; i++)
    tmpseries = 3 * Math.random();
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series.join( = [cs];
    sArray.addItem({data:tmpseries});
    //columnchart1.dataProvider = sArray;
    cs = new ColumnSeries();
    cs.dataProvider= sArray;
    cs.displayName = 'Series';
    cs.yField = 'data';
    columnchart1.series[chartSeries] = cs;
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample"
    width="195%" height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxis>
    <mx:LinearAxis baseAtZero="true" maximum="3"
    autoAdjust="true"/>
    </mx:verticalAxis>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

    <?xml version="1.0"?>
    <!-- Example showing using mx:ColumnSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.graphics.SolidColor;
    import mx.charts.HitData;
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 3;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series = [cs];
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 0; i < 10; i++)
    tmpseries
    = 1 * Math.random();
    if(tmpseries > 0.5)
    tmpseries
    = 1;
    else
    tmpseries = 0;
    var testArrCol:ArrayCollection = new ArrayCollection();
    for(var j:int =0; j < 10; j++)
    var m:Number = tmpArr[j];
    var m1:Number = tmpseries[j];
    testArrCol.addItem({mData:m.toString(),nData:m1.toString()});
    cs = new ColumnSeries();
    cs.dataProvider = testArrCol;
    cs.displayName = 'Series' + chartSeries;
    cs.xField = 'mData';
    cs.yField = 'nData';
    columnchart1.series[chartSeries] = cs;
    public function myTipFunction(hitData:HitData):String
    return(ColumnSeries(hitData.element).displayName +" - "+
    hitData.item.mData + "\n" + "Value : "+ hitData.item.nData);
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample" width="98%"
    height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0"
    dataTipFunction="{myTipFunction}">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxisRenderer>
    <mx:AxisRenderer visible="false"/>
    </mx:verticalAxisRenderer>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

  • Bought a TV season, but it's not showing up in 'purchases'

    I just bought a TV season and chose the option to 'download later', but when I go to Quick Links > Purchases, it's not showing up at all. The funds have already been taken from my iTunes credit and I see the purchase receipt on my account page. I checked to see if the items were hidden, but they're not there either. Already sent an e-mail to Apple Support, but would appreciate any help I can get here. Thanks!

    Yes, the series is still for sale in the USA. Forgot to mention that 'Store > Check for Available Downloads' says everything has been downloaded for my Apple ID.
    When I go to Quick Links, TV shows I bought years ago are still available for download. Still using the same Apple ID and have already tried re-logging into my account.

  • Why does a new episode of a already bought TV Show Season does not show up in my purchased section right away?

    Why does a new episode of a already bought TV show season does not show up in my purchased section right away? So I can watch it on my iPhone via Wi-Fi.

    Same problem here!!! It look like it is same problem everywhere!
    Updated Apple TV yesterday, purchased 4th episodes of Good Wife and after watching it dissapear! Wanted today to watch again, it is in the list but needed to buy again! After trying couple of time alternatives I buy it again and same thing happened!! If I want to watch again I need to buy it! Again!!
    First three episodes witch I buy under old operating system are there and there are no any problem with them!
    Did Apple start charging per view??
    It start to looking like Windows! Repair one thing but ruin 10 good other things with every update!!
    Does somebody have solution?. Thanks in advance!!

  • I bought the season 7 pass for Doctor Who, but the new episodes are not showing up for download.  Who can I contact to find out why?

    I bought the season 7 pass for Doctore Who, but the new episodes are not showing up for download.  I've been all over the support page, I even looked up my purchase history and there is are none showing and I even bought last weeks episode, The Bell's of St. John.   Who can I contact to find out why I'm not getting the rest of season 7 for download?
    Thanks,
    ChristyQ

    Garmin is sending you to Apple because it is Apple that would have to give you a refund as the actual point of sale.  However, Apple states all sales are final.
    Apple is sending you to Garmin because it is Garmin's fault their maps are out of date and Apple doesn't write the software.  They may not even be looking that deeply and simply perceiving it as a programming "bug" it is up to Garmin to solve.
    Who know whose fault it is that Garmin isn't getting up to date data to put in their maps.
    Ultimately I think you stand the best chance in getting a refund from Apple though it isn't guaranteed.  Apple is the cashier.  You just have to convince them this isn't just a line of code omitted from an application and isn't something that will be soon corrected by Garmin.  Make it clear it isn't a problem with the application running on your device, it is a problem with the data it contains.  Either that or you have to hope Garmin will feel so bad about it they will delve down into their slush fund and send you a refund.

  • I bought a movie from iTunes on my Mac and it is not showing up on my AppleTV purchased movies.  Is there a way to get this to sync?

    I bought a movie from iTunes on my new macbook pro and it is not showing up on my AppleTV, any ideas?

    Sign out of the Apple ID on the ATV and sign back in.

  • I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    Thanks.  The reason this has become an issue is that I recently bought a new Macbook Air that the iPad is not synced to.  The one is was synced to was stolen.  If I want to sync this iPad to the new Air, won't it be wiped before I'm able to copy these films or am I wrong about that?

  • My audio books that were bought through Itunes on my Iphone do not show up on my Itunes account.

    I bought audio books on my iphone, but they do not show up on my itunes account on my computer.  The books I purchased through the computer show up on my itunes account.  My phone is at it's max and I need to remove these books, but do not want to lose them.  Thank you for your assistance.

    This isn't completely coherent so I am not sure what is wrong other than some (al?) of your tracks have broken links.
    If you are browsing through iTunes you are not looking at files you are looking at data entries that point to files, with those locations being incorrect right now. 
    There isn't a file called iTunes media, there is a folder that should be in your iTunes folder called that.
    You mention something about external drives. I presume one is for your Time Machine backup but is the other one used for iTunes?  If so, what do you keep there?
    Here's some background information to help place this in context:
    What are the iTunes library files? - http://support.apple.com/kb/HT1660
    More on iTunes library files and what they do - http://en.wikipedia.org/wiki/ITunes#Media_management
    What are all those iTunes files? - http://www.macworld.com/article/139974/2009/04/itunes_files.html
    Where are my iTunes files located? - http://support.apple.com/kb/ht1391
    iTunes 9 [and later]: Understanding iTunes Media Organization - http://support.apple.com/kb/ht3847

  • HT1459 Just bought a new ipod shuffle for my kid and cannot set it up because it does not show up in itunes. Also the charging light does not light up. what could be wrong, as i am able to see both my iphone and ipad on itunes on the same pc?

    Just bought a new 4th gen iPod Shuffle for my kid. Problem is I cannot do the initial set up, as the device does not show up on iTunes on my PC. Also the charging does not light up. Any ideas on what could be wrong, as I am able to see both my iphone and iPad on iTunes using the same PC?

    I also tried manually underlining a few things on the new iPad and when highlighting a paragraph, it would skip a few lines and the line would go through a few as well. Looks like a major iBooks glitch needs to be addressed here.

  • So, I bought some songs on Itunes on my Iphone. One song fully downloaded and now shows up in my music, but the other one will consistently appear to finish downloading, then not show up in my Music at all. I've tried several times. Help!!!

    I've been trying to download this song for two days. ITunes says that it downloaded, and that I purchased it, but it will NOT appear in my music. The weird thing is that I bought two songs simultaneously and the first one successfully appeared and I can listen to it. Totally fine. However, the second one will finish downloading, then disappear. I bought the same song two more times off of different albums just to make sure there wasn't a problem there. Nope. Everything with that song title will not show up. Rhapsody in Blue, by the way. I also bought it on my iPod touch just to make sure there, and it successfully downloaded and I can listen to it on my iPod without a problem. Again, it just won't go on my IPHONE. It's frustrating. Any advice or help?!

    Hi EFlanders,
    Here are some ideas on how to find the lost media:
    iTunes: Finding lost media and downloads
    http://support.apple.com/kb/ts1408
    This article explains how to transfer purchases from your iPhone to iTunes:
    iOS: How to transfer or sync content to your computer
    http://support.apple.com/kb/ht1296
    Cheers!
    - Ari

  • I bought pages for my macbook air, but it is not showing up on my desktop mac

    I recently purchased Pages as it is on my ipad / iphone / ipod touch, so I thought why not have it on my Macbook air and desktop mac.  I bought it on the Macbook air, but it is not showing up on my purchases, and if I go to download it on the desktop, it states it is 19.99.  What am I doing wrong?

    Apps installed on your iOS devices cannot run on Mac OS X. Two different operating systems.
    If you want Pages on your Mac, you can purchase and download the Pages app for OS X here.
    Be aware, the minimum requirement for Pages for OS X is v10.9 or later.

  • I bought a song and it is not showing up in my iTunes

    I bought What I've Done by Linkin Park and it is not showing up in my library nor my Purchased. iTunes froze right after I bought it. Could that be the reason why I didn't get my song? If so how do I get it?

    If that doesnt work than try going into My Documents -> My Music -> iTunes -> iTunes Library -> Linkin Park -> and see if the song file is there, if it is just drag it into your purchased music.
      Windows XP Pro  

Maybe you are looking for