I know I am a luddite but if I am streaming content on my Ipad from a TV station can I get it to appear on Apple TV or does it only work for things in my itunes library?

I know I am a luddite but if I am streaming content on my Ipad from a TV station can I get it to appear on Apple TV or does it only work for things in my itunes library?

Welcome to the Apple Community.
Websites and third party Apps need enabling before they will allow AirPlay of Video content. Some Website/App developers have not enabled their products, some simply haven't got around to it yet, others have stated that they won't be enabling AirPlay (likely as a result of licensing issues).
I have created a User Tip to list Apps that have been tested with Video Airplay, if you have any Apps that you have tested please leave details in the comments at the bottom of the User Tip or email me if you don't have commenting privileges.

Similar Messages

  • Problem: Why does this only work for powers of 2?

    I wrote this program to create a golf league schedule for, ideally, eight players. However I want it to be flexible enough to permit for other denominations, such as 10 or 12. When I run the program it works perfectly for any number that is a power of 2 (2,4,8,16,32,etc...) but it will not work for other even numbers such as 6,10, or 12. If anyone has any insights it would be most helpful.
    *(This is my first post on this forum so if anything looks not quite right or if this post isn't worded exactly how it should be then I apologize in advance)*
    Here's the three classes.
    public class ScheduleDriver
         public static void main(String[] args)
                              //instance variables
              int max;     //size of flight matches array
              ScheduleMaster master;//instance of class
              //get max number of players for flight
              System.out.print("Max number of players in this flight:");
              max = Keyboard.readInt();
              master = new ScheduleMaster(max);
              //create weekly schedules for season
              master.createSchedule();
              //display weekly schedules
              master.displayWeekly();
         }//end main
    }//end ScheduleDriver
    public class ScheduleMaster
         //instance variables
         int maxPlyrs;//maximum number of players in flight
         Week[] weeklySchedule;//array of weekly matches
         public ScheduleMaster(int plyrs)
              //set up instance data and declare array size
              maxPlyrs = plyrs;
              weeklySchedule = new Week[plyrs];
              //set up the size of each week's matches array
              for (int pos = 0; pos < plyrs; pos++)
                   weeklySchedule[pos] = new Week(plyrs);
              }//end for
         }//end constructor
         public void createSchedule()
              int count = 0;//index of weeklySchedule array
              final int QUIT = -1;     //quit value for loop
              int flag = 0;     //value to continue or exit loop
              //for each player A
              for (int a = 1; a < maxPlyrs; a++)
                   //for each opponent of player A
                   for (int b = (a + 1); b <=maxPlyrs;b++)
                        //set count/index and       reset flag to zero
                        count = (a - 1);
                        flag = 0;
                        //while still haven't found correct week for this match
                        while (flag != QUIT)
                             //if at least one of these players are already scheduled
                             //for a match this week
                             if (weeklySchedule[count].checkPlayers(a,b) == true)
                                  //if last valid index of array has been reached
                                  if (count == (maxPlyrs - 2))
                                       //reset count/index to zero
                                       count = 0;
                                  else
                                       //incriment count
                                       count++;
                             }//end if
                             else
                                  //assign this match to array of matches for week
                                  //and then exit loop
                                  weeklySchedule[count].setMatch(a,b);
                                  flag = -1;
                             }//end else
                        }//end while
                   }//end for
              }//end for
              //fill in last week/position night
              for (int pos = 0; pos < maxPlyrs;pos++)
                   //set up position match
                   weeklySchedule[maxPlyrs - 1].setMatch(pos + 1, pos + 2);
                   //incriment pos
                   pos++;
              }//end for
         }//end createSchedule
         public void displayWeekly()
              //for each week in schedule
              for (int pos = 0; pos < maxPlyrs;pos++)
                   //display header
                   System.out.print("WEEK " + (pos + 1));
                   //if pos/index is 0 or even, flight plays front 9
                   if ((pos % 2) == 0)
                        System.out.println(" [FRONT 9]");
                   //else flight plays back 9
                   else
                        System.out.println(" [BACK 9]");
                   //display lines
                   System.out.println("----------------");
                   //display week's matches
                   weeklySchedule[pos].display();
                   //skip a line
                   System.out.println("\n");
              }//end for
         }//end displayWeekly
    }//end ScheduleMaster
    public class Week
         int[] schedule;          //array of players involved in matches for week
         int max;               //max number of players
         int count = 0;          //number of players currently involved in matches
         public Week(int size)
              //set up instance data and size of array
              max = size;
              schedule = new int[size];
         }//end constructor
         public boolean checkPlayers(int playerA, int playerB)
              boolean flag = false;     //flag to determine if at least one of
                                            //the players to check are already playing
                                            //this week
              //for each element of array
              for (int pos = 0; pos < max; pos++)
                   //if player A matches player already playing this week
                   if (schedule[pos] == playerA)
                        flag = true;
              }//end for
              //for each element of array
              for (int pos = 0; pos < max; pos++)
                   //if player B matches player already playing this week
                   if (schedule[pos] == playerB)
                        flag = true;
              }//end for
              return flag;
         }//end checkPlayers
         public void setMatch(int playerA, int playerB)
              //if array can take more matches
              if (count <= (max - 2))
                   //insert players into array of active players for week
                   schedule[count] = playerA;
                   schedule[count + 1] = playerB;
                   //incriment count of players playing this week by 2
                   count = count + 2;
              }//end if
              else
                   System.out.print("No more matches can be entered!!!");
         }//end setMatch
         public void display()
              //for every even numbered index starting at zero
              for (int num = 0;num < max;num++)
                   //display the player at that position and the next consecutive
                   //player who will be his opponent for the week
                   System.out.println(schedule[num] + "VS" + schedule[num + 1] +
                   //incriment num
                   num++;
              }//end for
         }//end display
    }//end Week

    Ah, I have discovered the problem. The reason for the infinite loop was because of the resetting of the counter/index after every successful match entry back to (a - 1). This was causing matches to be put into weeks where they didn't belong, which caused the program to infinitely loop because it couldn't find an appropriate week to place it's next match. The only time the count should be reset back to zero is when a new player A is being processed or the last valid array index has been referenced before an out of bounds exception would be thrown. I'm still not entirely sure why this doesn't occur on powers of 2 but theh again I haven't put too much thought into it having solved the initial problem! :)
    Anyways thanks for the input all who posted, much appreciated.
    Happy programming!!!!

  • Why does iMessage only work for some of my contacts?

    Having problems with iMessage. It will work for some of my contacts but not others. And those people arre having the same problem, works with other people but not me.. Anyone dealt with this?

    1. Both devices have to be running iOS 5.*
    2. Internet latency can delay iMessage connection.  If you enabled "Send as SMS", the phone will switch to SMS if iMessage doesn't connect quickly.  If you disable Send as SMS, more of your messages will go through as iMessage.

  • TS1398 I can't get on wi-fi. tried Apple's solution. Doesn't work. ios6 is terrible! I want to go back! Help!

    Help! I made the huge mistake of accepting an upgrade to ios6 for my iPad 2. Now I can't access wi-fi. tried resetting Network, turning off and on. Tried it at home wi-fi and at work wi-fi and nothing works.  My husband also has an iPad2 with previous ios5 and has no problems with our router at home. (nor did I until I did the upgrade).
    How do I fix this - My iPad is useless to me without the wi-fi.

    What make, model, and version WiFi router do you have?
    What security type are you using on your router? WEP, WPA, WPA2?
    What iOS level are you using on your iPad 2?
    What happens?

  • Can't get past grey screen with apple spinning wheel, had a loading bar for a few seconds?

    HElp, can not open my Mac. Stuck on grey screen with apple and spinning wheel?
    PReviously opened fine but I could not remember my password try a number of passwords.  I now know my password but when I turned it off and back on got this screen?

    THe command R took me to a dark scree with Mac OS X Utilities with 4 choices
    REstore From Time Machine Back Up
    REinstall Mac OS X
    GEt Help Online
    DIsk Utility
    HElp

  • How can I get captions to appear on photos in a Slideshow produced in iPhoto for iOS please?

    I have iPhoto 2.0.1 on OS 7.0.6 and cannot see captions on pictures in slideshows. Also, is there any way to turn off the ken burns effect which is automatically applied to photographs on the iMovie timeline? Thank you.

    InDesign is not a web authoring tool. If you’re expecting text to simply overlay a graphic in export HTML from InDesign you’re going to be highly disappointed.
    I’ll make the assumption you know nothing about web authoring tools and HTML/CSS. I suggest you look into Muse.
    Bob

  • TS4036 I deleated pictures from my photo stream that were in albums.  I did not know that when I deleated from photo stream they would automatically deleat from the album.  Can I get them back?

    I deleated pictures from my photo stream that were placed in albums.  I did not know that by doing this I removed them from the albums as well.  Is there any way to get this photos back?

    Not unless they are still in your camera roll, or backed up on your computer.  Photo stream photos are not automatically backed up anywhere.

  • IWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    iWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    There's no reason you can't go on using iWeb for this - with iWeb '08 you have to publish to a local folder (i.e. on your Mac) and then upload the contents of the folder (not the folder itself) to your hosting service: and you have to make sure you enter the new URL in the Publish information or the feed won't work properly; this done, an iWeb podcast should work fine.
    Of course there is still the problem that iWeb is not supported and sooner or later a system upgrade may break it. You could look at RapidWeaver: you can make podcasts with that, though the last time I looked into that - which was admittedly some time back - I didn't feel it was ideal for this. There are lots of other podcast creation programs or services around. WordPress is OK but it may be a bit of a steep learning curve: Libsyn is an online service that seems to work reliably. Blogger writes messy feeds but does usually work. Podcast Maker used to work well - I used it myself a few years back - but it rather looks as if it's gone moribund and it may not be reliable with Lion/Mountain Lion, so you would want to check into that.

  • Okay so my iphone says its connected to the internet but the internet only works for games so i cant use things like facebook twitter or youtube PLZ TELL ME HOW TO FIX THISf

    Okay so my iphone says its connected to the internet but the internet only works for games so i cant use things like facebook twitter or youtube PLZ TELL ME HOW TO FIX THISf by the way it an iphone 4s and i have never encountered this problem before my dads iphone is the same after we updated to ios 8.1.1 but my mum hasnt updated yet and hers is fine

    If deleting then reinstalling the apps doesn't work, then contact the app developer for support.
    It sounds, though, like your internet connection is simply very slow.
    Try making a backup, then restoring the iPhone as new, and testing again.

  • There were some updates on my Apps.  I updated them on my iTunes but my iPad did not get the same downloads/updates thru iCloud.  Does the iCloud only works for "New" Apps or Books downloaded from the store but not the "Updates"?

    There were some updates on my Apps.  I updated them on my iTunes but my iPad did not get the same downloads/updates thru iCloud.  Does the iCloud only works for "New" Apps or Books downloaded from the store but not the "Updates"?

    Purchased music does not count against your iCloud storage and you cannot get rid of them in the purchased tab.
    What is backed up
    You get unlimited free storage for:
    Purchased music, movies, TV shows, apps, and books
    Notes: Backup of purchased music is not available in all countries. Backups of purchased movies and TV shows are U.S. only. Previous purchases may not be restored if they are no longer in the iTunes Store, App Store, or iBookstore.
    Some previously purchased movies may not be available in iTunes in the Cloud. These movies will indicate that they are not available in iTunes in the Cloud on their product details page in the iTunes Store. Previous purchases may be unavailable if they have been refunded or are no longer available in the iTunes Store, App Store, or iBookstore.
    Look here for help on managing iCloud storage.
    http://support.apple.com/kb/HT4847

  • Safari and firefox stop working after a few minutes of browsing, regardless of what site I'm on. I have to restart my computer to get internet access again but it only works for a few more minutes, then I have to restart again. Please help!

    Safari and firefox stop working after a few minutes of browsing, regardless of what site I'm on. I have to restart my computer to get internet access again but it only works for a few more minutes, then I have to restart again. I don't get a spinning ball, it just stops working at whatever page it's on. I can close the program just fine but when I re-open it, either safari or firefox, it freezes trying to load the hompage. This started a few days ago after trying to stream a movie on my computer. I'm on a Mac Air OS X Version 10.6.8 and have downloaded all updates. When I go into finder, it says I have over 80 gigs available. Is there some other memory cache that I need to check? Thanks so much for your help.

    ejwoodall wrote:
    It's not a router problem as I explained in my post. If it was a router problem then I wouldn't have the problem everywhere I go. It is an issue with the software.
    Then I guess the millions of people running 10.5.7 with no issues are just hallucinating that their machines are working fine?
    I'm not trying to belittle your issues; you're certainly having them and I know first hand how annoying an intermittent AirPort issue can be. (In fact, mine was due to an AirPort driver bug that no one else seemed to suffer from.)
    The single best diagnostic you could do is take your system running 10.5.7 to an Apple Store, and try using their in-store network.
    If your machine performs flawlessly, it may be a router issue.
    If your machine has connectivity issues there, it may be a hardware problem with your machine.
    There have been numerous people in multiple threads over the years who swore that an update was buggy because things used to work, but returned later to sheepishly admit that they took their machine in, a problem was found and fixed, and now their Mac works flawlessly with the newer software.
    But simply reinstalling 10.5.5 in no way means the explanation of how firmware bugs may be at play here is incorrect.
    In the context of that explanation, all you've done is possibly reinstall software that asks to add "2 + 3."

  • ITUNES ONLY WORKS FOR 5 MINUTES AT A TIME

    iTunes stopped working about a month ago, but then I fixed it using the msconfig solution. It worked for a while now I have the same problem, i can fix it, but then iTunes only works for about five minutes before closing. This is the only way I can fix it; first, by re-installing iTunes, then, doing the msconfig solution and restarting the computer. Then after about 5 minutes it closes. To open it again I have to go through the whole proccess. I cannot figure out how to permanently fix it.

    Sounds like you have some malware that is interfering with iTunes.
    What do you have to turn off in msconfig to get iTunes working?
    It's pretty involved to remove it. If you have purchased security software like Norton or McAfee, I suggest contacting them for help.
    Otherwise try this
    http://mysite.verizon.net/dbjcgj/id1.html

  • Previously posted troubleshooting doesn't work for my error message "iTunes could not back up the iPhone because an error occurred".  What other options do I have?

    Previously posted troubleshooting doesn't work for my error message "iTunes could not back up the iPhone because an error occured".  What other options do I have to backup my iPhone data properly?

    Hi there kchagape,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Troubleshooting backup issues in iTunes
    http://support.apple.com/kb/ts2529
    -Griff W. 

  • HT4059 I got definition of a word by tapping twice on a word. But it only works for a few time. Ater i tap a word for speak, the feature for definition does appear anymore?

    I got definition of a word by tapping twice on a word. But it only works for a few times. Ater i tap a word for speak, the feature for definition does not appear anymore?

    I got definition of a word by tapping twice on a word. But it only works for a few times. Ater i tap a word for speak, the feature for definition does not appear anymore?

  • Hello all,  I bought an iPhone 5 in the US and brought it back to Brasil. Now I'm trying to use Siri, but once I press the "home" button "voice control" appears and it only works for me to call my contacts. The manual guide tells me to go to Settings Gene

    Hello all,
    I bought an iPhone 5 in the US and brought it back to Brasil. Now I'm trying to use Siri, but once I press the "home" button "voice control" appears and it only works for me to call my contacts. The manual guide tells me to go to Settings>General>Siri. At the General menu "Siri" doesn't appear. What should I do to set Siri up if it doesn't appear at settings>general?
    Thank you,
    Melanie.

    Go to Settings>General>Restrictions and make sure Siri is set to On.

Maybe you are looking for

  • How to delete the listener service?

    Dear All, I want to delete the service of listener, because that service is not required. Please tell me how to delete the service. Oracle version is 9.2.0.5 and os is windows 2003 server. Thanks In advance, Prathamesh.

  • QuickTime Plug-In 7.2

    I am hoping that someone can help me with my problem, I got the following link:http://www.apple.com/macosx/ and I wanted to take the tour but when I press on what size I want a window drops down telling me "Unable to load plug-in, The page "Apple -Ma

  • How do I share the music of my library with another account on same computer

    how do I share the music of my library with another account on same computer

  • How to map idoc segments to multiple output structures

    Dear experts, On Pi I need to map segments from an Idoc to 2 different outputstructures. My scenario is as follows: incoming Idoc on PI -> if segment eq 'X' then map to outputstructure '1'; if segment eq 'Y' then map to outputstructure '2' Idoc struc

  • Why wont java go off my pc and uninstall

    Hi i have tried everthing to get java off my computer and unistall it but it wont work how can i get it off?