HT4623 How do I get the Air Play feature on my iPad with the iOS7.1 update?

Just updated my iPad with iOS 7.1 and I don't get the Air Play icon with any video apps.  What happened to Air Play?

Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
iOS: Use AirPlay Mirroring
http://support.apple.com/kb/ht5209
iOS: Use AirPlay to wirelessly stream content
http://support.apple.com/kb/ht4437
iOS: Troubleshooting AirPlay and AirPlay Mirroring
http://support.apple.com/kb/TS4215
Controlling who can AirPlay to your Apple TV
http://www.ilounge.com/index.php/tips/comments/controlling-who-can-airplay-to-yo ur-apple-tv/
http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-Airplay-Icon-Missing. htm
http://appletv2.com/airplay-icon-missing-ios-7/
 Cheers, Tom

Similar Messages

  • How do i get my photos to stream to my iPad in the events that were oringally created.  Right now they are streaming as photos and are not grouped at all.  I would like to get them back into the events that were originally created

    how do i get my photos to stream to my iPad in the events that were oringally created.  Right now they are streaming as photos and are not grouped at all.  I would like to get them back into the events that were originally created

    Hi..
    Thanks for the reply..
    My original I Phone 5 was running IOS 6.12
    My I phone 5S currently runs IOS 8..When I upgraded it, it had IOS 7 on it which made the I Photo app compatible with everything below IOS 8...( which the photo app is not compatible with ) so I just connected the I Phone 5S to my computer and thinking the new phone had IOS 7 on it that these was nothing to worry about..I thought all 900 + pictures in the photo stream would transfer but somewhere in the process, I Tunes decides to just go and install IOS 8 which requires that you run a " Photo Migration App" to transfer photos from IOS 7 & below. The problem was is that I didn't want IOS 8 on my new 5S so I thought I wouldn't have to do that part..
    Anyway the phone emerged with IOS 8 on it and the only photos that remained were the ones that were actually on the phone..The 900 + I had in the stream didn't transfer because the Photos that works on IOS 7 and below isn't compatible with IOS 8..I guess you have to use the photo migration app that comes with IOS 8 & I phone 6..But I didn't ask to upgrade to IOS 8...It just did it on it's own!
    I still have the I Phone 5 Back up that I did just before giving it back to Verizon but if I try to restore the I Phone 5S running IOS 8 those photos in the stream will not go back on the phone because IOS 8 isn't compatible with the I Photos" that ran on IOS 7 and below..
    So I have an I Pad mini that runs IOS 7..should I try and erase it...and put that I Phone 5 backup on it and pray the photos that were in the stream come back on it so I can transfer them back to my computer...then erase the I pad mini again and restore it using it's original backup that I have on the computer and the in the cloud?
    I know this sounds confusing but I'm at a loss as to what to do..This is what I found ...http://support.apple.com/en-us/HT201386
    but it doesn't help me..
    Steve

  • How can i get Google maps back on, i lost them with the ios6 update, the new maps are terrible

    how can i get Google maps back on, i lost them with the ios6 update, the new maps are terrible

    It's still not known if and when Google Maps becomes available in the AppStore. This is today's story: http://www.macrumors.com/2012/09/25/google-has-not-yet-submitted-a-google-maps-a pp-to-apple/

  • I have a Creative D100 wireless speaker.  How do I get my bluetooth on my Mac to work with the speaker.  It doesn't appear to recognize the speaker.

    I have a Creative D100 wireless speaker.  How do I get my bluetooth on my Mac to work with the speaker.  It doesn't appear to recognize the speaker.

    Have you gotten in touch w/the speaker manufacturer?  Their response? 

  • How can i get my iMessage on my mac to sync with the texts i get on my iPhone?

    how can i get my iMessage on my mac to sync with the texts i get on my iPhone?

    Welcome to the Apple Community.
    Are you aware it only syncs iMessages. Also once enabled only new messages will sync, try messaging the user from the Mac and see if that gets things going for you.

  • When I watch slide show through my Apple TV version 6..2 the air play instruction box appears always on the screen and hides the photo. Is there any way to stop it.

    When I watch slide show through my Apple TV version 6..2 the air play instruction box appears always on the screen and hides the photo. Is there any way to stop it.

    Hi Sujatha vijay,
    It sounds as if your Apple TV is in Conference Room Display mode. You will need to turn this off. See this article -
    Apple TV (2nd and 3rd generation): Understanding AirPlay settings
    http://support.apple.com/kb/HT5517
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • How do I get System.out.format to print out doubles with the same precision

    Using the System.out.format, how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println.
    For example, take the following code:
    double d = 12.48564734342343;       
    System.out.format("d as format: %f\n", d);
    System.out.println("d as   sout: " + d);Running the code, I get:
    <font face="courier">
    d as format: 12.485647
    d as sout: 12.48564734342343
    </font>
    The precision of d has been lost.
    I could bump up the precision as follows:
    double d = 12.48564734342343;
    System.out.format("d as format: %.14f\n", d);
    System.out.println("d as   sout: " + d);That appears to work, I get:
    <font face="courier">
    d as format: 12.48564734342343
    d as sout: 12.48564734342343
    </font>
    However, that solution fails if d has a different precision, say 12.48. In that case I get:
    <font face="courier">
    d as format: 12.48000000000000
    d as sout: 12.48
    </font>
    So how do I get System.out.format to print out doubles with the same precision as System.out.println?
    Thanks..

    YoungWinston wrote:
    Schmoe wrote:
    Interesting, but this is not what I am looking for...Your original question was "how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println", and you've been told how to do that (although the pattern given by sabre may be a bit excessive - you should only need 15 '#'s).The initial phrase from my question was "Using the System.out.format, how do I..".
    It's worth remembering that, unlike the Format hierarchy, 'format()' is NOT native to Java. It's a convenience implementation of the 'printf()' and 'sprintf()' methods provided in C, and first appeared in Java 1.5. Those methods were designed to produced fixed-format output; 'println()' was not.Perhaps it is the case that this can't be done.
    Furthermore, Double.toString(), which is what is used by println() does not produce the same format in all cases; format("%.14f\n", d) does. TrySystem.out.println(1.8236473845783d);
    System.out.println(1823647384.5783d);and you'll see what I mean.I am fine with that. It still displays all the precision.
    I am simply looking for a way to quickly print out multiple variables on a sysout while debugging. I want it as syntactically sweet as possible. System.out.println can be a pain when outputting multiple variables like the following:
    "System.out.println("a: " + a + "; b:" + b + "; c: " + c);"
    For some reason, my fingers always typo the plus key.
    I was hoping that System.out.format would be easier,along the lines of:
    "System.out.format("a: %f, b: %f, c: %f\n", a, b, c);"
    From a syntactical sweetness point of view, it is easier. However, the %f on doubles truncates the precision. I figured there must be a way to get the full precision.
    DecimalFormat is syntactically sour for this purpose, as you need to instantiate the DecimalFormat.
    fwiw I have enjoyed reading the suggestions in this thread...

  • How do you get FaceTime to work between two Mac's with the same email address? Thanks, Mike

    How do you get FaceTime to work between two Mac's with the same email address?

    I would like to know the same thing.  How does facetime work between a MacBook Pro and an I Pad that run off the same email address/mac id

  • HT4437 I am just setting up my Apple TV and I can't locate the air play icon on my iPad.  Any suggestions?

    I am just setting up my Apple TV and cannot locate the air play icon om my iPad.  Any suggestions?

    Take a look at the short video at the bottom of this page link> Apple TV
    The answer you are looking for is depicted in the video.
    By Apple policy we want to let you know we might benefit or profit if you visit our link

  • How do I transfer powerpoint and word documents to my ipad with the new itunes?

    how do I transfer powerpoint and word documents to my ipad with the new itunes?

    Have a look at the following:
    http://itunes.apple.com/sg/app/quickoffice-pro-hd-edit-office/id376212724?mt=8&l s=1
    http://itunes.apple.com/sg/app/office2-hd/id364361728?mt=8&ls=1
    http://itunes.apple.com/sg/app/documents-to-go-premium-office/id317107309?mt=8&l s=1
    http://itunes.apple.com/sg/app/polaris-office/id513188658?mt=8&ls=1

  • I try to update the software of an Iphone or Ipad with the Itunes of the MacBook Pro. It downloads the software but at the end always the comment shows up that the download failed and i should try again. Any ideas, I already updated the iTunes software.

    I try to update the software of an Iphone or Ipad with the Itunes of the MacBook Pro. It downloads the software but at the end always the comment shows up that the download failed and i should try again. Any ideas, I already updated the iTunes software.

    stuckoncc wrote:
    I updated the latest version of iOS software on my Macbook Pro
    iOS is on iPhones and iPads.
    Are you using an iPhone or iPad?

  • HT4623 how can i get an older version of facebook for iphone 3g the new version isnt compatible

    how can i get an older version of facebook for iphone 3g the new version isnt compatible with the current 3g IOS

    If you didn't save an older version on your computer from a previous download, then there is no way to get one.
    You can access the mobile web page through Safari.

  • HT4437 How do I get my Air Play to access my two WD Share Space and my booklive duo?. Able to access with PS3 but not Apple TV Ver 3.  Have all my movies and music on it and do not want to have a computer on for it.

    I had bought two Network Drives so I could watch my own movies anywhere in my house and clear up the clutter of all the DVDs, Blurays and CDs, Works greate with the PS3,  Bought the Apple TV version 3 because it was smaller and resently bought the IPAD 3 and have the IPHONE 4S and other apple products.
    My wish is to access my Network drives with the Apple TV - I have herd of Jailbreaking it (Not Avalible from where I can tell for the Version3) - but why didn't Apple ever think of accessing a Network drive and is their a work around for this?   Should I just shutup  and wait till Jail Breaking is avalible for the Version 3?.
    Thank you for any help

    longbeachjoe wrote:
    ......but why didn't Apple ever think of accessing a Network drive and is their a work around for this?
    I'm sure they did think of it, but quickly discarded the idea because of the horrendous user experience this causes.

  • How do you get music to play after downloading other music with a different Apple ID?

    How do I get music to play after downloading song from a different Apple ID

    Click here and request assistance.
    (92678)

  • How do i get my hp 940c printer to share itself with the homegroup on my pc?

    What do i have to do to get my hp 940c printer to share itself with the homegroup on my HP Pavilion Entertainment  pc?

    Hi,
    check if this helps
    go to the computer where the printer is installed
    on that computer click on start and go to devices and printers and right click on the printer and left click on printer properties
    click on the sharing tab and you have a check box make sure the box is checked.
    once this is done your printer is shared now you can go to your entertainment pc click on devices and printers and and you will see this printer.
    I work for HP but my posts and replies are my own.
    Click the Kudos star as a way to say "thank you" for helpful posts.
    Be sure to come back and click the 'Accept as Solution' button on the post that solved your issue - it may help someone else .....

Maybe you are looking for

  • Direct Connect To Folder on Server

    I want to give access to a specific folder to someone on my server with out allowing access to rest of the server. When I connect to server with the credentials I can only see the server but cannot access the folder that I want to.

  • Calibration quality

    hi, I am doing a calibration process for that i maintain 1) Equipment . 2) Maintaina a inspection plan and put the task type group . 3) shedule the maintenance plan. then i create a maintenance order (IW31) to that equipment and maintain the settelme

  • Issue in Aadobe Forms

    Dear all, As my requirement is an interactive form the fillable field of import parameter /1bcdwb/docparams has to be set to 'X'. When I do the same, it is giving the following information message 'Adobe document services error: Processing Exception

  • MAP 7.0 errors completing inventory

    I am using MAP v7.0 to run hardware and software inventory scans on Windows and Linux/Solaris servers and receive errors not found in any of the blogs or documentation. The specific error is "Failed- Inventory not completed". I cant think of a more g

  • External email server

    How do I update my MX records to reflect 2 servers one for outgoing and the other for incoming mail? I am using another company for email since the websites included with creative cloud don't include.