HT201335 Mirroring function on Apple TV 3gen not working - help please

I have a brand new Mac Book Air and recentlypurchased the Apple TV (3rd gen). The mirroring icon worked until I closed the screen on the laptop and then Apple TV stopped working on the tv I was streaming content to. I opened the screen and since then there is no mirroring icon in the upper tool bar. I rebooted my router a few times and still nothing. I can access my itunes content but not the mirror features.
Any help is appreciated.
Thanks

If you are near an Apple Store you can take it to the genius bar and they will probably swap out the remote for you once they verify it is dead.  If not I would try to take it back to were you got it and replace it as a deffective unit.

Similar Messages

  • HP pavilion dv6 microphone not working . help please . . .

    HP pavilion dv6 microphone not working . help please . . .

    Hi,
    DV6 is a series of hundreads of models, what is yours ? To help us answer question quicker, please read this:
       http://h30434.www3.hp.com/t5/First-Time-Here-Learn-How-to/Welcome-Get-started-here/td-p/699035
    You may wat to try this first:
    1. Right click speaker icon (right hand corner)
    2. Select Microphone devices
    3. Right click Microphone
    4. Enable it
    5. Click Apply/Ok
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • On my iPhone 5 camera photographed not clear. blurry pictures, autofocus does not work. help please!

    on my iPhone 5 camera photographed not clear. blurry pictures, autofocus does not work. help please!

    Could you please describe how you are trying to delete a single text message and it will not work? What are you seeing in place of the trash can icon?

  • When i go in my settings on my ipod touch 3gen it says no wi-fi as in i cant connect to any wi-fi at all i tried to restore but did not work HELP PLEASE

    when i go in my settings on my ipod touch 3gen it says no wi-fi as in i cant connect to any wi-fi at all i tried to restore but did not work HELP PLEASE

    See:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar

  • After update.. i can not start the ipad, when i press agree in the terms ...it will freeze and the screen not working///help please

    after update.. i can not start the ipad, when i press agree in the terms ...it will freeze and the screen not working///help please

    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • HT201210 I can not restore my iPhone 4S itunes error says I have 29 and I put it in DFU mode and not working help please

    Hello

    I can not restore my iPhone 4S itunes error says I have 29 and I put it in DFU mode and not working help please

  • TS2755 When trying to open my mail, it opens then closes immediately, I've deleted the account and re-created it 3 times and also done a reset but still not working, help please

    When trying to open my mail, it opens then closes immediately, I've deleted the account and re-created it 3 times and also done a reset but still not working, help please

    Try closing all apps in Multitask Window
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe up on the screenshot of the app you want to exit.
    3. The app will fly off the screen

  • HT201335 Mirroring for Iphone 4. Does not work..

    I really wish I could mirror with the Iphone 4. We bought 4 Apple tv's yesterday only to find out the mirroring function wasnt avaliable. NOT a happy customer!!
    I know Apple tv can do much more but the mirroring feature is pretty cool. I guess the salesman pulled a fast one on me. He told me it would work on my Iphone 4 with no issues at all..

    The only time I had trouble like this is when I edited a photo and resynced it after it was already included in a project.
    I had to delete the project and start over. You said you have tried this to no good.
    Try posting at the imovie site and maybe someone there can help.
    http://discussions.apple.com/forum.jspa?forumID=1379

  • Simple copy of reports not working - help please

    Hello
    I have this function that was written to copy a given report object to a given folder. The code is not working - the copyObj = col.Copy(obj,2) appears to be failing.
    Can anyone shed some light on this? Thank you in advance!
    - Russell
    My function:
    function CopyReport (objID, DestFolder, iStore)
    dim col
    dim obj
    dim copyObj
    on error resume next
    'QUERY FOR OBJECT TO COPY
    str = "SELECT * FROM CI_INFOOBJECTS WHERE SI_ID = " + objID
    set col = iStore.Query ( str )
    obj = col.Item(1)
    'COPY THE OBJECT
    copyObj = col.Copy(obj,2)
    'SET THE PARENTID OF THE COPIED OBJECT
    copyObj.Properties.Item("SI_PARENTID").Value = DestFolder
    'SET THE PARENT FOLDER OF THE COPIED OBJECT
    copyObj.Properties.Item("SI_PARENT_FOLDER").Value = DestFolder
    'COMMIT THE COLLECTION
    iStore.Commit(col)
    end function

    Hi All
    I've resolved the problem with the copy and am posting the code below. I'd appreciate it if it could be placed in the appropriate forum so that it may be a resource for other developers in the future. I've left in all of my debugging/error checking code for reference as well.
    - Russell
    The working copy function (with loads of debugging code) is this:
    function CopyReport (objID, DestFolder, iStore)
    'Function CopyReport
    'Parameters:
    '  objID - the ID of the report to copy
    '  DestFolder - the ID of the destination folder for the copy
    '  iStore - the InfoStore to use
    'Returns: A text string that is displayed in a web page via response.write that includes the
    '  name of the report if copied or the error information as appropriate.
    dim col
    dim obj
    dim copyObj
    dim newCol
    on error resume next
    'QUERY FOR OBJECT TO COPY
    str = "SELECT * FROM CI_INFOOBJECTS WHERE SI_ID = " + objID
    set col = iStore.Query ( str )
    If Err.Number <> 0 Then
      CopyReport = "iStore.Query failed<br>"
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      CopyReport = CopyReport & "<br>" & str
      Exit Function
    End If
    set newCol = iStore.NewInfoObjectCollection()
    If Err.Number <> 0 Then
      CopyReport = "newCol creation error"
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      CopyReport = CopyReport & "<br>" & str
      Exit Function
    End If
    set obj = col.Item(1)
    If Err.Number <> 0 Then
      CopyReport = "OBJ = col.item(1) error<br>"
      CopyReport = CopyReport & "<br>" & str
      CopyReport = CopyReport & "<br>Error: " & Err.Number & " - " & Err.Description
      Exit Function
    End If
    'COPY THE OBJECT
    set copyObj = newCol.Copy(Obj, 2)
    If Err.Number <> 0 Then
      CopyReport = "copyOBJ error"
      CopyReport = CopyReport & "<br>Count: " & col.Count
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
    '  Exit Function
    End If
    'SET THE PARENTID OF THE COPIED OBJECT
    copyObj.Properties.Item("SI_PARENTID").Value = DestFolder
    If Err.Number <> 0 Then
      CopyReport = "Error setting SI_PARENTID to " & DestFolder
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      Exit Function
    End If
    'SET THE PARENT FOLDER OF THE COPIED OBJECT
    copyObj.Properties.Item("SI_PARENT_FOLDER").Value = DestFolder
    If Err.Number <> 0 Then
      CopyReport = "Error setting SI_PARENT_FOLDER to " & DestFolder
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      Exit Function
    End If
    'COMMIT THE COLLECTION
    iStore.Commit(newCol)
    If Err.Number <> 0 Then
      CopyReport = "Commit error"
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      Exit Function
    End If
    'Return the object info
    CopyReport = copyObj.Title
    end function
    Edited by: Russell L Magidson on Dec 11, 2008 5:12 PM
    Edited by: Russell L Magidson on Dec 11, 2008 10:28 PM
    Edited by: Russell L Magidson on Dec 11, 2008 10:29 PM

  • TS3274 What woud I do if my screen is not responding? I can't unlock my mini ipad because the touchscreen is not working. help please.

    Hi guys, please help me. my son's mini ipad cannot be unlocked because the touchsreen is not responding.. help please. thank you.

    A reset should help. Tap and hold the Home button and the On/Off buttons for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.

  • Ipod mini not working HELP PLEASE!!!!!

    my ipod mini is showing the apple logo, a sad face and then a battery sign with a fire bolt when i try plugging it into the computer. also, my computer wont recognize it at all. I've tried resetting and restoring it many times but its not working. what should i do!?!?!?!?! I've tried to make an appointment with the Genius Bar but they are too busy and my warrenty expires really soon!!
    HELP!!!!!!
    ipod mini   Windows XP  
    ipod mini   Windows XP  

    Hi Ssh,
    Welcome to Apple Discussions
    You may want to look at...
    Knowledge Base Document #61711 on iPod missing in "My Computer" or in iTunes on Windows
    Knowledge Base Document #93499 on Windows confuses iPod with network drive and may keep iPod from mounting or songs may seem to disappear
    Knowledge Base Document #61003 on iPod shows a folder icon with exclamation point when you turn it on
    Knowledge Base Document #61584 goes over When the iPod Only Shows an Apple Logo and Doesn't Start Up
    Jon
    Mac Mini 1.42Ghz, iPod (All), Airport (Graphite & Express), G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz, iBook iMac 233Mhz, eMate, Power Mac 5400 LC, PowerBook 540c, Macintosh 128K, Apple //e, Apple //, and some more...  Mac OS X (10.4.5) Moto Razr, iLife '06, SmartDisk 160Gb, Apple BT Mouse, Sight..

  • Youtube not working help please

    i am using macbook pro retina for 1 year now but just a few days ago youtube stopped working suddenly and i thought it was because the site was down or something but i have checked that and found that it is not working just in my macbook
    when i open youtube it shows a html format  please help guys i have attached the photo ive reinstalled google chrome ,and also flash player with no respite

      Go step by step by step and test.
    1. Power off the router. Unplug it from the wall. Wait a while.
        Plug it back to the wall. Power the router on. Wait until all the lights are lit properly. It will take a while.
        Restart the computer.
        Start up in Safe Mode.
        http://support.apple.com/kb/PH14204
    2. Delete Caches.db
        Close all windows and quit all applications.
        Hold "option" key down and click "Go" menu in the Finder menu bar.
        Select "Library" from the dropdown.
        Library > Caches > com.apple.Safari > Caches.db
        Right click the Caches.db file and select "Move To Trash.
        Close windows and relaunch Safari.
    3. Empty Caches
        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        Develop menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    4. Delete Cookies
        Safari > Preferences > Privacy > Cookies and other website data:
        Click “Remove All Website Data”.
    5. Safari > Preferences > Extensions
        Turn off Extensions if any and launch Safari again to test.
        Turn on those one by one and test.

  • Iphone 3G 2.2 earpiece not working HELP PLEASE

    Hi, suddenly my iphone earpiece it´s not giving me sound. When I recieve a call people can hear, but I can´t. Also with the voicemail, I have to use the head phones, or the bluetooh. The only way to speak in a conversation with out the head phones it´s to use it in speaker mode. I have tried everything, plug and unplugged many times the headphones (it recognize the it doesn´t have it because when I put it out it says ringer and no headphones ringer in the iphone when I change the volume). The ipod part is working correctly, when I recieve a call or make a call, it stops. The mic is working fine.
    Can somebody help me to find where can be the problem? I already reset it, two times, try the plug and unplugged thing, clean the jack trail

    No, I restore the phone to factory setting already, I didn´t make the back up, I put as a new iphone, and try to use it with no extra apps, and still not working, how does this part can get damage and everything still working correctly?, I still using it as a phone with the headphones when I not alone and with the speaker when nobody is around, I don´t have an apple store near me, so I have to send it to them by mail, so, I want to do everything I can before to do that.

  • Can not install windows 7 pro using boot camp as mouse and keyboard will not work Help please

    I have a new iMac and trying to install Windows 7 Pro using boot camp. I have reached the stage of starting to load windows from the DVD then discovered the mouse and the keyboards not working so I could not interact with windows installation.

    Open, if not so already, the Windows formatter. Identify the BC Windows partition. It will be the one listed with the proper size you created and/or will be labeled as a C: drive. Be careful you select the right one or you may be corrupting the entire drive.
    Format the partition as NTFS.

  • My iphone 4 automatic lock is not working help please

    hi there
    my iphone run out of charge very rapidaly and also turn it self off time to time , and when i set auto lock for example 1,2,5 ect minutes it does not work at all

    Do you have a protective case on the iPhone, maybe it's interfering with the auto-lock?
    If that isn't it, try restarting or restoring the iPhone.

Maybe you are looking for