Airplay display issues: "extend desktop" not working properly. Secondary display continues to mirror.

Whenever I turn my airplay display on and set it to "extend desktop," my secondary display (TV) continues mirroring my mac book pro (hereinafter MBP). It doesn't fully mirror my MBP, but my secondary display registers every time I switch between my desktop 1 and my full screen apps. Moreover, When I do switch to a fullscreen app on my MBP, I get a blank (blue-ish) screen on my TV.
Any solutions!?!
Additionally, "extended desktop" for my Airplay display worked properly when Mavericks was first released.

Try this:
Click on the Apple TV Icon on the top toolbar
Then, select "Mirror Built in Display" instead of extend desktop
In the same menu under "Match Desktop size to:" select "Apple TV" (or keep it on "built in display if that works"
This solved a similar problem for me. 

Similar Messages

  • Image display control scrolling does not work properly when zoomed in

    I am using a ROI on an image in the image display control. When zooming into the image to fine-adjust the positioning of the ROI, the image scrolling does not work properly. As far as I understand, the image should scroll automatically when the ROI is leaving the visible area. However, the scrolling behaviour seems to depend on the origin of the Labview panel, not the origin of the image display control, which might require to move the ROI way out of the visible area before the scrolling takes place. In other words: the coordinate system of the image display control is shifted with respect to the true visible image area, depending on where you place it on the front panel. As a consequence, when clicking on a ROI which is in the visible area, but is outside of what Labview thinks is the visible area, it might immediately jump to the left border of the image, making the positioning of the ROI really difficult.
    Has anyone noticed this behaviour, and what would be a reliable solution to avoid this? 
    Dirk

    Hello,
    no, I am not talking about the tools palette. Just place an image control with some image in it on a new VI front panel. Then, use the rectangle from the tools and select a ROI in the image. If you zoom in (using the magnification glass), and then grab the ROI and move it around, the image scroll with the ROI. So far, so good. If you now place the image control elsewhere on the panel, or add new control above it, resize the panel, etc. , this scrolling when moving the ROI will not work correctly if the origin (0,0) of the panel is far away from the image control.
    I have attached a VI for simplicity (although there is hardly any code in it).
    If you make a ROI and try to move it down, you will notice that scrolling starts if you move the mouse out to about 10cms below the image (depens on your screen, of course). After that, if you click on the ROI, the scroll bars and ROI might jump up to the upper end of the image. Imagine how annoying this is if you try to finely adjust the ROI position. 
    I think it is a bug in the implementation of the image display control.
    Thanks,
    Dirk
    Attachments:
    scrolling.vi ‏818 KB

  • Links Not Working With Secondary Display

    I have several website links in my presentation. When I am in presentation mode on my MacBook Pro and click a link, it opens up in Safari. All fine. However, if I hook up a secondary display not in Mirror Mode, so that my presenter screen/notes are on my MacBook Pro and the presentation is actually running on the secondary display - and I then mouse to the secondary display and click one of the web links, they do not open in Safari. Nothing happens.
    Is this the correct behaviour? I would have though the links would still open in Safari?
    Any help asap would be greatly appreciated!
    EDIT: Upon further investigation, I found that deselecting the preference "Allow Expose, Dashboard and others to use screen" allows the links to work again. Of course, the problem now is that when I return to Keynote after clicking a link, my slide builds have all been reset which is not good. Am I stuck with one problem or the other?!
    Thanks,
    Mike

    Oh, well, it just randomly started working. Nevermind! Please
    delete...

  • Apple tv patch 6.1.1 extended desktop not working

    My apple tv just upgraded to patch 6.1.1(6698.99.19)  from 6.1(6698.99.19)
    I have an Ipad Mini2 which I normally use to view movies on my tv.
    I will select the apple tv, (with air play) and play the movie using Moliplayer on the Ipad mini2.
    I was able to play from a mac pro I have in my office if I wanted to.
    This used to work great as the apple remote controlled the movie and you could set the ipad mini2 down on the desktop.
    After the patch, the above does not work. What happens, is the movie is not played.. however an audio icon pops up on the apple-tv
    and you can hear the movie audio. 
    So after this patch, you can only view the movie with mirrored desktop selected after this latest update.
    Both the apple mini2 and the mac pro produce the same result.
    Additional steps..
    I have taken the apple tv and used Itunes to re-install the software with a USB cable. Unfortunately .the same result.
    I assume I have a bug I am reporting that can be logged.
    Additionally. is it possible to put back the older version of the software so the apple TV will work as before?
    Thanks

    I have the exact same problem aswell. Did the update from 6.1 to 6.1.1 on my Apple TV 3rd gen. When using my iPhone 5 showing pictures och videos from my camera roll it works just fine over Airplay. So the problem is not the transmission. When playing a video from my Synology NAS using VLC for iOS nothing happens on my Apple TV like it did before the update!  Annoying
    Thanks

  • Adobe photoshop cc 2014 assign to desktop not working properly

    Having an issue with Adobe photoshop cc 2014 not switching to my secondary monitor.
    I currently have my iMac connected to a 22" cintiq monitor that I use as my secondary monitor and whenever I open photoshop I right click on the "Ps" icon in the tray and navigate to options > Assign To: Desktop on Display 2(the Cintiq) and photoshop doesn't move over to the next screen. I've tried doing this with application frame checked on and off in photoshop. When it's checked on it will move to the cintiq, when it's checked off it won't move.
    I've tried to do the exact same things with illustrator and I haven't had any problems what so ever.
    Has anyone had a similar issue?

    Adobe finally admits that this issue is a known issue. They tried to blame it on an outdated graphics card driver (see above), but mine was current. After I headed off all of their illogical excuses, one by one, they finally sent me an email stating the issue is definitely on their end and they were able to replicate it on their end - contrary to a previous email in which they attempted to shift blame on my end. I have to say Adobe gave all appearances that they are dismissive and in denial about it - until today. Once again, they escalated the issue (Level 2 - whatever that means). I'm not holding my breath. Thoroughly frustrated with how Adobe refused to take ownership of this until I had them corralled. And yes - I did let them know I was not pleased. Very disappointed with Adobe support. I invested a lot of time in previous support sessions, and the issue is still not resolved.

  • Router.attach(String, Class ? extends ServerResource ) not working properly

    I am having getting router.attach() to work properly
    Server server = new Server(Protocol.HTTP, 8182, new TestServerApplication());
    server.start()
    Here's the code that's in the client
    ClientResource clientResource = new ClientResource(
    "http://localhost:8182/contacts/123");
    The following code does NOT work
    router.attach("/contacts/123", ContactServerResource.class);
    Exception in thread "main" Not Found (404) - Not Found
    The following code does NOT work
    router.attach("/contacts/123", ContactServerResource.class, Router.MODE_BEST_MATCH);
    Exception in thread "main" Not Found (404) - Not Found
    * using attachDefault results in the call being handled properly
    // success!
    router.attachDefault(ContactServerResource.class);
    I also tried something different rather than using a Server.
    Component component = new Component();
    // Add a new HTTP server listening on port 8182.
    component.getServers().add(Protocol.HTTP, 8182);
    // Attach the sample application.
    component.getDefaultHost().attach("/contacts/123",
    new TestServerApplication());
    component.start();
    In this case router.attach("/contacts/123", ContactServerResource.class) is still called and it still fails to work. You have to attachDefault() to get it to work
    I can't think of anything else to try. Anybody have any ideas? thank you
    java

    Try running your query directly into the database and make sure it actually returns a row. This may get you started with the debugging process. Are you doing any stacktraces or System.out.println(theException); in your catch blocks? This may also help if there is an excpetion. You may need to consult your server logs (unless you have some sort of console running) in order to see the results of any prints.

  • Ipad display issue - replaced still not working

    I replaced a LCD display on iPad 1 thinking it was bad.  Turned this unit on and it is still not working.  Tried the display on another iPad and it works fine so I know it is not the LCD.  The ipad in questions is recognized in iTunes.  Backlight doesn't come one

    There is obviously a hardware problem and doubtful if anyone here will know what that is.

  • After installation photoshop cs5 extended is not working properly

    don't know what the problem is?

    don't know what the problem is?
    And neither do we. Sorry, you need to provide much more information - operating system, system specs, what is not working.
    Mylenium

  • Extended desktop not working, but mirror image does

    I am using two identical HP monitors.  I have a Y adapter to connect the monitors.  Which I'm guessing means the computer is only seeing one display since there is only one display output on the back. Can anyone tell me how to get my graphics card to see the second monitor?

    Video Card:
    Radeon HD 5770
    VRAM Type:
    GDDR5 SDRAM
    Details:
    By default, an ATI Radeon HD 5770 with 1 GB of GDDR5 memory is installed in a double-wide, 16-lane PCI Express 2.0 graphics slot.  The card has two Mini DisplayPorts and one dual-link DVI port. By custom configuration it also can be equipped with an ATI Radeon HD 5870 which also has 1 GB of GDDR5 memory for an additional US$200 or two ATI Radeon HD 5770 video cards for an additional US$250. Also see: What are the default graphics cards provided with each Mac Pro? What Mac Pro compatible video cards are available for purchase later? Which video cards have which ports?
    Standard VRAM:
    1 GB
    Maximum VRAM:
    1 GB
    Details:
    Other graphics cards can be pre-installed at the time of purchase or can be installed later.
    Display Support:
    Up to 6 Displays*
    Resolution Support:
    2560x1600*
    Details:
    *Apple advertises that this system is capable of supporting up to six displays but notes that "connecting more than three displays requires installation of two ATI Radeon HD 5770 video cards". Apple also notes that there is "a maximum of two DVI-based displays per graphics card." By default, one ATI Radeon HD 5770 video card is installed and this default video card is capable of supporting three displays -- digital resolutions up to 2560x1600 and analog resolutions up to 2048x1536.
    2nd Display Support:
    Dual/Mirroring
    2nd Max. Resolution:
    2560x1600
    Details:
    The ATI Radeon HD 5770 is capable of supporting three 30-inch displays with a resolution of 2560x1600 in either dual display or mirrored mode.
    http://www.everymac.com/systems/apple/mac_pro/specs/mac-pro-quad-core-3.2-mid-20 10-nehalem-specs.html
    Video (Monitor):
    3
    Details:
    Two Mini DisplayPorts and one dual-link DVI port provided by the default ATI Radeon HD 5770 graphics card. Supports dual display and mirroring modes. This default card is capable of supporting as many as three displays and the Mini DisplayPorts are capable of multichannel audio.
    So, depends on what resolution Monitors you want to use, you need this for upto 1920*1200...
    http://store.apple.com/us/product/MB570Z/B/mini-displayport-to-dvi-adapter
    Or this one for greater resolutions than 1920*1200...
    http://store.apple.com/us/product/MB571Z/A/mini-displayport-to-dual-link-dvi-ada pter

  • Digital Cinema Desktop not working properly on MacBook Pro 15"

    I'm having trouble with Digital Cinema Desktop playback on the main LCD screen of my MacBook Pro 15". I have selected Digital Cinema Desktop Playback-Main under the View menu but when I press option+F12 I only get a still frame. If I press space, the audio plays but the video remains as a still frame. If I press the right arrow key and hold it down it will play real time or just frame advance each time I press that key quickly. I have also disable my screen saver as recommended in the FCP help document.
    Any ideas where a hidden setting which will remedy this might be? Should I trash the preferences and reset things?

    View > Video Playback > All Frames.

  • Applemobiledevice not working properly message

    Just downloaded the latest itunes. Every time I open itunes there's an "apple mobile device not working properly" message that continually pops up and it won't stop. I use Vista and have no clue how to stop it. Can anyone help?

    Take a look here:
    http://discussions.apple.com/ann.jspa?annID=640
    Selective startup info:
    http://support.microsoft.com/kb/310560
    Hope that helps.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Discussions page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums, in the User Tips Library and in the Apple Knowledge Base before you post a question.
    Regards.

  • After Security updation of Windows 7 in Boot Camp (Mac Book Pro with Retina Display) on 13-Nov-2013, Windows 7 Desktop Gadgets are not working properly.

    After Security updation of Windows 7 in Boot Camp (Mac Book Pro with Retina Display) on 13-Nov-2013, Windows 7 Desktop Gadgets are not working properly.
    This is boot camp problem, because in other normal notebooks (e.g. SONY VAIO, Lenovo with Windows 7) the gadgets are working normally.
    I am attaching the screen shot of Desktop Gadgets and Security updates of Windows 7.
    Kindly solve this issue ASAP.
    Shailendra Gupta
    <edited by host>

    You are not addressing Apple, but a community of unpaid volunteers. So ASAP won't cut it. Also, you should refrain from posting personal information (like your email address) in the body of your comments, as this is part of the community usage guidelines.
    Have you reinstalled the latest Boot Camp Windows 7 drivers, just in case Microsoft overwrote some of them during the Windows 7 security update?
    If you want to communicate issues with Apple about Boot Camp and OS X, click on the link. Just don't hold your breath on receiving a response.

  • XFCE4 not working properly display X as cursor not arrow pointer

    Hi all
    I have recently installed arch and XFCE4 as my desktop environtment everything went well for a few days.
    But all sudenl 2 days ago thing appeared not working properly. Things displayed on my desktop are out of proporion mainly the X as cursor instead of an arrow, newly opened windows default to top right cornner overlap my taskbar panel not able to move this. I've tried to re-install xfce4 but weren't sure I did it correctly.
    tried :
    pacman -Rdd xfce4 xfce4-goodies
    rm -R ~/.config/xfce4
    then reinstall problem still occurs.
    Any suggests and help would be greatly appreciated.
    thx
    Last edited by archlux (2013-06-23 14:29:01)

    Be sure you cursor theme is complete. Which one are you trying to use? Did you try setting it up from directly X confs?
    There must be an option in window manager or window manager tweaks about overlapping taskbar. You can use alt+left mouse to move your windows till it is configured.
    Reinstalling is as meaningless as deleting system32. If you are out of options, just delete your .config folder then reinstall.?
    Last edited by Gulver (2013-06-23 17:59:47)

  • Since the last update to iTunes 11.0.3 (42) the airplay connection is not working properly , keeping breaking up

    since the last update to iTunes 11.0.3 (42) the airplay connection is not working properly , keeping breaking up, while the airplay works fine with my iPad and iPhone. Anyone has experienced the same? any fix available?

    Hi Erdelestre,
    Thanks for visiting Apple Support Communities!
    See this article for some tips about troubleshooting AirPlay:
    Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/ts4215
    Troubleshooting performance issues with AirPlay or AirPlay Mirroring
    If you are experiencing intermittent playback or significant network lag with AirPlay or AirPlay Mirroring, it could be due to a weak Wi-Fi connection, interference, or the distance between the Wi-Fi router and your iOS device, Apple TV or AirPort Express. Try the following suggestions:
    Ensure that other devices are not trying to stream to the same Apple TV at the same time.
    Turn off Bluetooth on your iOS device by tapping Settings > General > Bluetooth.
    Ensure that your Wi-Fi router is set up with the recommended settings for the best performance.
    Certain external devices, such as microwave ovens and baby monitors, may interfere with a Wi-Fi network. Try moving or disabling these devices.
    If possible, try to locate your Wi-Fi router in the same room as your Apple TV and iPhone/iPad.
    If your wireless and wired networks are the same, try connecting your Apple TV to the router via Ethernet instead of Wi-Fi.
    If the Wi-Fi router has an external antenna, check to see that is it connected properly and in good condition.
    Use the Wi-Fi network troubleshooting guide to resolve interference and other issues.
    Best,
    Jeremy

  • I had a mac pro system..from last 2 days the keyboard is not working properly..if i typed a key but it displayed 2 or 3 keys..what is the problem? is keyboard gone..?

    i had a mac pro system..from last 2 days the keyboard is not working properly..if i typed a key but it displayed 2 or 3 keys..what is the problem? is keyboard gone..?

    Hey ynareshbabu,
    Thanks for the question. I understand you are having issues with your keyboard. The following article provides some great troubleshooting steps:
    One or more keys on the keyboard do not respond
    http://support.apple.com/kb/TS1381
    You may want to refer to the "Some keys don't work as expected" section.
    Thanks,
    Matt M.

Maybe you are looking for

  • Can't access my gmail using the gmail app. States your browser's cookie functionality is turned off. please turn on. How do i do that???

    Can't access my gmail using the gmail app. States your browser's cookie functionality is turned off. please turn on. How do i do that???

  • Want to open link in new browser

    hi can anyone tell me how to set a link so that when someone clicks on it the website it is linked to opens in a new browser. I could not find the place in dreamweaver to tell it to do that. thanks edward

  • Only one earphone is emitting sound

    Recently my iPod has only been sending music through the left earphone. I've tried this with a few different models, so I'm fairly confident it's not a earphone issue. Is it a hardware problem or a software one? And is there an easy way to fix either

  • Need to show some fields in display mode

    Hi, i need to show some fields in display mode for VA02 transaction code( is to change the values) for some particular users. so do we have any user exits for this requirement? Please answer me. its very urgent.. thanks in advance.  ex: payment terms

  • Upgrading to 8.0.2

    I have been following some similar threads here but none seems to be my exact problem. I currently have itunes 8.0.1 and run Vista home premium (32 bit). I had a little problem installing 8.0.1 but finally was successfull. Now when I try to install i