In Mac OS X 10.5 I see a black frame around the selected desktop icon

Today when i select a desktop icon a black frame forms around that icon. It does not go away by clicking on the desktop. if i click on another icon, the frame moves to that icon. i have never seen this before. is it a problem?
Message was edited by: Peggie

Open the Universal Access pane of System Preferences, click on Seeing, and turn VoiceOver off.
(45821)

Similar Messages

  • I am using the old imovie HD on my old Mac laptop... it works fine, but when I export a video to YouTube there is a black frame around it.. how do i get rid of that? thanks!

    I am using the old imovie HD on my old Mac laptop... it works fine, but when I export a video to YouTube there is a black frame around it.. how do i get rid of that? thanks!

    Hi MyAppleID99,
    You may want to check to make sure the clip hasn't been moved back and forth between wide screen and standard aspect ratios; sometimes a combination of letterboxing and pillarboxing can lead to a black frame "windowbox" when playing the final video. You may find the following article helpful:
    Apple Support: What are Letterboxing, Pillarboxing and Windowboxing?
    http://support.apple.com/kb/ht2320
    Regards,
    - Brenden

  • Using IOS 7.1.2 on Safari when I leave the focus on a input on my webpage and rotate my device from Horizontal to vertical, I see a black space on the right and the page is not displayed properly. Any solutions to this problem?

    iOS Version: 7.1.2
    Browser: Safari
    I have a sample log-in page with two input fields and a submit button. When I focus on any of the input fields in landscape mode and rotate my phone and come to the portrait mode I see a weird black space towards the right of my page. Screenshots attached below:
    My page code below:
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
        <title>IOS Test</title>
        <style type="text/css">
            a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav, object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, tdvideo, tt, u, ul, var
                background: transparent;
                border: 0 none;
                font-size: 100%;
                margin: 0;
                padding: 0;
                border: 0;
                outline: 0;
                vertical-align: top;
            ol, ul
                list-style: none;
            blockquote, q
                quotes: none;
            table, table td
                padding: 0;
                border: none;
                border-collapse: collapse;
            img
                vertical-align: top;
            embed
                vertical-align: top;
            article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video, div
                display: block;
            mark, rp, rt, ruby, summary, time
                display: inline;
            input, textarea
                border: 0;
                padding: 0;
                margin: 0;
                outline: 0;
            iframe
                border: 0;
                margin: 0;
                padding: 0;
            input, textarea, select
                margin: 0;
                padding: 0;
            body
                font-family: Arial, Myriad Pro, Trebuchet MS, sans-serif;
                font-size: 100%;
                background: #F5F5F5;
            a
                text-decoration: none;
            a:hover
                text-decoration: none;
            img, object, embed, video
                max-width: 100% !important;
            .clear
                display: block !important;
                width: 100% !important;
                clear: both !important;
            .body
                position: fixed;
                width: 100%;
                top: 0;
                left: 0;
                overflow-y: scroll;
                -ms-overflow-style: -ms-autohiding-scrollbar;
                -webkit-overflow-scrolling: touch;
                -ms-touch-action: pan-y;
                -ms-user-select: none;
                z-index: 0;
            .body > *
                -webkit-transform: translateZ(0px);
            .header
                background: #fff;
                text-align: center;
                border-bottom: #45A116 solid 8px;
                padding: 5% 10%;
            .content
                width: 70%;
                position: relative;
                margin: 20% auto 10% auto;
                text-align: center;
            .content input
                display: block;
                background: #E6E6E6;
                border-radius: 15px;
                border-bottom: #A8A8A8 solid 3px;
                margin-bottom: 5%;
                width: 96%;
                padding: 4% 2%;
                text-align: center;
                color: #595959;
            .content a
                display: inline-block;
                padding: 2% 10%;
                color: #fff;
                background: #45A116;
                margin-top: 5%;
                border-radius: 5px;
                border-bottom: #2C690E solid 3px;
                -webkit-transition: all 0.1s linear;
                -moz-transition: all 0.1s linear;
                -ms-transition: all 0.1s linear;
                -o-transition: all 0.1s linear;
            .content a:active
                background:#368011;
        </style>
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
        <script type="text/javascript">
            function adjustBody() {
                var wh = $(window).height();
                $(".body").css({
                    "height": wh + "px"
            $(document).ready(function () {
                adjustBody();
                $(window).resize(function () {
                    adjustBody();
        </script>
    </head>
    <body>
        <div class="body">
            <div class="header">
                <img src="sampleImage.png" alt="Sample Logo" />
            </div>
            <form action="" method="get" id="sampleForm">
            <div class="content">
                <input type="email" value="User Name" onblur="if($(this)[0].value == ''){$(this)[0].value = 'User Name';}"
                    onfocus="if($(this)[0].value != '' && $(this)[0].value == 'User Name'){$(this)[0].value = ''};" />
                <input type="password" value="Password" onblur="if($(this)[0].value == ''){$(this)[0].value = 'Password';}"
                    onfocus="if($(this)[0].value != '' && $(this)[0].value == 'Password'){$(this)[0].value = ''};" />
                <a href="javascript:void(0);" onclick="$('#sampleForm').submit();">Login</a>
            </div>
            </form>
        </div>
    </body>
    </html>
    Does anyone have any solutions to this problem?
    Regards,
    Mayank Tripathi

    ALWAYS SAVE YOUR idevice USING ICLOUD !!!! IT SAVES ... ALL !! (includings apps data, but the apps themselves ! USE IT ! i done this...)

  • HT1551 what does it mean when I see a black screen with the Apple logo but it wont do anything but that.  I have re booted 4 times  same outcome.  Help!

    I just hooked up my Apple TV.  I see a black screen with Apple logo.  Nothing else happens.  Remote functions as I see the white light respond.  Have rebooted 4 times but same thing occurs.  What should I try.
    Thanks.

    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Open iTunes.
    Select your Apple TV in the Source list, and then click Restore.

  • Why am I seeing a black frame with a big "X" through it

    I am sure I have not had this problem before.
    But today when I tried to import a video file into AE (CS5 Windows), and added it to a new composition, the result in the composition was this big black frame with an "X" in it -- and it is also not the aspect ratio of the orginal footage (which is 1440 x 1080.
    I tried adding the file into an existing AE project with no problem.
    WHen I click on the MOV file itself, the video shows fine (but also at a narrow aspect ratio -- not 1440 x 1080)
    BTW My compositon settings are 1440 x 1080
    Any suggestions?
    Thanks,
    Rowby

    Hi
    I set up a new project and imported the footage again into the New Composition Icon.
    For whatever reason it's still going into the Square Pixel Mode.  And not giving me a 1440 x 1080 view.  When I went into the comp settings and clicked on Presets I didn't see any that are specific 1440 x 1080.   I found a HDV  1080 29.97.  But that's making the view wider than  1440  .  But even that doesn't do me much good in the Pixel Aspect Ratio settings,,,, (Yes I have a bit of a built in letterbox on top and bottom of my original footage which you are seeing in the below screen capoture.)
    Again, not sure why simply dragging the footage into the New Composition icon doesn't do this automatically  for me -- especially since this is a new project.....   (Maybe there's a "project setting" I need to look into....????)
    Realize you're reading this via Iphone.  So I am patiently doing other things while I figure this out.....
    Thanks
    Rowby

  • What causes my mac computer screen to flash scramble words and black line across the screen when on the internet

    my computer when on the internet cause black lines to show up accross the cuputer screen and word scrambled. How can I stop this from happening

    Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".
    Sleep function OS X Mavericks:
       http://support.apple.com/kb/HT5869

  • I have a new T3i and am seeing a blue outline around the subject?

    I have a new Canon Rebel T3i.  I am noticing a distinct blue outline in my photos.  What may cause this?

    Thank you everyone for your responses.   Yes, chromatic aberration is exactly what it is and I've been able to remove it in post processing.  The photos in question were taken almost exactly as suggested in one of the responses...winter tree branches against a bright blue sky.   The lens is a "kit" lens, so low quality...thought it would be good enough to learn with, and I am learning, lol!  The lens is EF75-300 f/4-5.6 III.  Thanks again!

  • Seeking Mac Compatible Keyboard with "large easy see" CAPS LOCK LIGHT

    Can anybody reccomend a keyboard for the mac that has large easy to see Caps Lock Light in the centre of view on a keyboard?
    I have a Macally keyboard - it has a caps and num lock light - but it is far to the right of the keyboard - and I cannot see it under office lights - hence I waste a lot of time typing in the wrong tYpE FaCe!
    I prefer a wired keyboard - which I plug into my macbookpro, and a shallow travel postive style - ( not being fussy am I !?) but the key issue is that given  have to look at the keys to type I wish I could see if caps is on without looking at the screen.
    Any help appreciated. Thanks in advance. Guy M.

    Would one of these help? It saves buying a new keyboard
    http://www.macupdate.com/app/mac/21425/caps-warn
    http://www.macworld.com/article/1159419/capster.html
    Jerry

  • Using HD plasma as external display, black border around mac desktop

    Hey all, I'm having some difficulty setting up my Panasonic plasma tv as an external display for my Macbook. Whenever I hook up the display I am faced with thick black borders around the mac desktop on the external display. I have messed with the resolution setting for probably 2 hours with no success and the borders persist. I have it hooked up via an hdmi to dvi cable connected to a mini dvi cable. Does anyone have any ideas on how I can get it to display full screen on my plasma display without the borders? The displays native resolution is 1024x768, I believe. Any help would be appreciated!

    The problem isn't with your mac, it's the settings on the Plasma.
    Make sure you are outputting the correct resolution (1024x768 you said), although are you sure the display doesn't want 1366 x 768? That's what mine wants through it's DVI board.
    Once that's set, if you have boarder alignment problems then you need to adjust the overscan settings for that input.
    If you have a commercial version of the Panasonic it's easy, just use the Picture Pos/Size button on the remote to get to the menu to adjust it. If you have a consumer version Plasma, then ?.. It might be buried in the service menu? I don't know, but once you figure that out you can adjust it. Do a search in avsforum.com for your model number + overscan and you'll find the info you need.

  • I just replaced the power supply in my Intel imac and now the screen is really really dark and I see the missing folder icon, what do I do?

    The power supply in my Intel iMac went out (and smelled pretty burned) so I replced it and now when I start it up the display is so dark I can hardly see it and it shows the missing folder icon. Is it the inverter? Or if shine a flashlight on it and re-install the OS will changing the display settings maybe fix it?

    Thanks for ur quick reply to my problem. I tried all of that with no results... I did notice tho that the lights next to and above my caps lock key and my num lk key are now flashing. They flash in unison three times then there is a two second pause then they flash three more times and this repeats. They may have been doing this before I tried this solution but I did not take notice until now... I was also wondering how I am supposed to know, after pressing f10 to enter bios, how I can tell if my new drive is being detected when my monitor will not function? Was pressing f10 supposed to possibly make the monitor turn on? In a last ditch effort to try and further identify the problem, I re installed my old drive. Before replacing it my computer would begin to boot then display a hard error that would not allow me to continue booting and run Windows. My display would still work but I could not run Windows. After re installing the drive the monitor will not turn on. I'm beginning to think that I have a bad monitor. Is there a way of testing this with out buying one? Where does the monitor connect to the mother board? I wonder if maybe its been jarred loose, although I highly doubt it, it may still be worth looking at. Thanks again for your advice.
    Casey

  • I have rented a movie on apple tv and wish to finish it on my mac book air. When I open iTunes on my mac book air I can not see the movie in iTunes. It is an authorised device and I can see other purchases just. How do I fix it?

    I have rented a movie on apple tv and wish to finish it on my mac book air. When I open iTunes on my mac book air I can not see the movie in iTunes. It is an authorised device and I can see other purchases just. How do I fix it?

    Rented movies downloaded to an Apple TV can't be transferred to any other device.
    (86941)

  • I have a 2010 mac mini referbished and i dont see the Disk Utilitiy in the Utilities on the install disk. Is that because it is refurbished?

    I have a 2010 mac mini referbished and i dont see the Disk Utilitiy in the Utilities on the install disk. Is that because it is refurbished?

    The software that comes with your refurbished Mini should be identical to that which comes with a new Mini. Disk Utility should be in Applications > Utilities. Alternatively, choosing Utilities from the Go menu at the top of the finder windownwill take you directly to the Utilities folder.

  • Hi! I'm a Windows XP convert... switched to an imac about 4 months ago and am LOVIN' it  As a graphics designer I did use a feature on my Windows machine which I really miss on my mac... beaing able to see a preview of one of the images in a folder on top

    Hi! I'm a Windows XP convert... switched to an imac about 4 months ago and am LOVIN' it As a graphics designer I did use a feature on my Windows machine which I really miss on my mac... beaing able to see a preview of one of the images in a folder on top of the folder icon. In other words, in Windows, you can see the first image that is inside the folder as an icon on the folder itself. Is there a way to do this on the mac? Maybe some software program that will do it? Thanks for you help!

    It would be brilliant if Apple could make picture folders behave like events in iPhoto. You could see a photo on the folder, and also mouse over it to change pictures.
    But no, there's not an application I'm aware of that does this. You can manually make a picture the folder icon, but it's a tedious process.
    Unfortunately this is another example of how dated and worn out the Mac's interface is. The concept of using a file folder as the icon for a directory of images is so 80's. You could use coverflow, but that only helps once you're in the directory itself. Or use iPhoto or Aperture, although they just do photos. Or try Lyn as an alternative: it has a sort of iTunes-like interface, and makes it easy to organize photos without having to put them in iPhoto. And it can display photos that are already in Libraries.
    But you'd probably need a Finder alternative. I use Leap, which displays any type of document. It also does tagging, which is another huge omission in the Finder. More like Windows Explorer (although still no photo on folder icons).
    Another very stylish Finder alternative, especially useful for pictures, is FileBrowse. I don't know why it hasn't gotten more attention. It DOES put photo previews on the folders it shows. And allows one-click expansion to show the photo enlarged. It's super fast, and even allow you to group/sort by camera or flash! It really has to be seen to be appreciated. It works in Lion, although it doesn't seem to be have been updated lately. http://www.filebrowse.com/index.html
    Rob

  • Mac mini server has suddenly stopped seeing one or the other bluetooth devices! Batteries have been changed and they will connect to an older Mac mini. Server will now only see one or the other but not both.

    My Mac mini server has suddenly stopped seeing one or the other bluetooth devices, either the wireless keyboard or the mouse( both apple products) have tried new batteries, at first it was the mouse that stopped responding, but upon rebooting the computer now the keyboard will not respond and the mouse works. Both work fine on an older Mac mini that I hooked back up to check.

    There is absolutely no reason why they should not bothe be able to connect to your WiFi network. The easiest place to start would be to reboot your router. Unplug it for about 30 seconds and then plug it back in again. I would also restart both the iPad and the iPhone.

  • I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data.

    I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data and it does not show on the desktop when connected.

    Ok if disk utility was able to verify the drive I doubt there is any problem.. are you trying to open a TM backup??
    You need to mount the sparsebundle then check the actual info inside the bundle.
    Don't use disk warrior.. if the disk has verified then unless you deliberately deleted files there is nothing that is going to do.
    Pondini has a lot of stuff about getting access to the sparsebundle.
    http://pondini.org/TM/17.html
    But if you have copied info to the TC that is now gone.. and the disk is ok.. I am not sure.. the TC will not have deleted the files itself.

Maybe you are looking for

  • How can I set up my home network?

    This post might get a little long, and I need someone with patience to help me modernize my network. Here's what I have: Modem: Comcast Router: Netgear WNDR 3700 External Hard Drive : 2 TB Seagate GoFlex Desk 2 HD TiVo's connected via Cat 5 Windows l

  • Load my own music and Match music

    Might be a daft question but can i load my own music onto my iPhien abnd still have Match in use? i have some radio shows recorded i want to listen to. If i load them into iTunes and dont 'Match them', as its lots and they are long, can i then sync t

  • Captivate 6 trial

    I am looking for a trial of Captivate 6 (64 bit) and only see Captivate 7

  • New to muse, help needed

    first off i would like to say that when i selected a community to post into there wasnt one for muse so i chose dreamweaver. i have been creating a site for my real estate company in spain, i started by using dreamweaver having problems adjusting to

  • Ssi files have somehow become associated with a different site

    I have a site where I use two ssi files for a menu and for a sidebar. Somehow I have managed to associate these two files with a different site, so that the includes don't show up in design view and live view. When I hover over the includes in the Re