Funny Black Rectangle Around Every Selection

A friend has a black rectangle around anything she selects in list or icon. Trashed com.apple.finder.plist, com.apple.desktop. No change. Though it's a bit hard to describe, in list view when selecting a file or folder name the black rectangle starts as far left as the window allows and stops at the right end of the name tab. It does not include the date, kind, size etc only the name.
On the desktop, selecting an icon puts a black rectangle around the icon.
There is no Color Label selected.
Any ideas?
MacOS 10.4.10, G5 Dual.

Wow, that worked. When I told her she said she had been in System Preferences and had clicked Voice Over On and forgot about it. Volume control was off.
THANKS!

Similar Messages

  • How to make a rectangle around activeDocument.selection?

    Hi,everyone!
    Recently I met a awful problem. I want to make a rectangle around current selection, but Not success.
    Could you help me or give some clues? Thanks!

    Try the following code.
    Cheers Daniel
    boundingbox();
    function boundingbox()
        // zet nulpunt linksonder
        app.activeDocument.pageOrigin = Array(0,0);
        app.activeDocument.rulerOrigin = Array(0,0);
        // set variable
        var breedte = app.activeDocument.width;
        var hoogte = app.activeDocument.height;
        var doc = app.activeDocument;
        // omrekenfactor
        var omf = 2.834645;
        // maak lijnkleur aan
        var newRGBColor = new RGBColor();
        newRGBColor.red = 0;
        newRGBColor.green = 255;
        newRGBColor.blue = 0;
        var black = new GrayColor();
        black.gray = 100;
        var layercheck = 0;
        var targetDocument = app.activeDocument;
        var layerCount = targetDocument.layers.length;
        var a=1;
        for (var i=1 ; i < 2; i++) {
            if (a==1){var txt = ''; var layname = 'BB';};
            var layercheck = 0;
            for (u = layerCount -1; u >= 0; u--){
                targetLayer = targetDocument.layers[u];
                var layerName = new String (targetLayer.name);
                    if (layerName.indexOf(layname) == 0){
                    targetDocument.layers[u].visible= true;
                    targetDocument.layers[u].locked= false;
                    var layercheck = 1;
            if (layercheck == 0){
                newlayer = documents[0].layers.add();
                newlayer.name = (layname);
                newlayer.color = newRGBColor;   
        alignType = 'top';
        mySelection = activeDocument.selection;
            if (mySelection.length > 0) {
                anchorBounds = getPosition(mySelection[0]);
                var artLayer = doc.layers['BB'].groupItems.add();
                targetDocument.layers['BB'].preview = false;
                var breedte = bnds[2] - bnds[0];
                var hoogte = bnds[1] - bnds[3];
                var rect = artLayer.pathItems.rectangle ((bnds[1] + (20*omf)),(bnds[0] - (20*omf)), breedte + (40*omf), hoogte + (40*omf));
                rect.filled = false;
                rect.stroked = false;
            } else {
                anchorBounds = getDocPosition();
                var doc = app.activeDocument;
                var omtrekartwork = app.activeDocument.geometricBounds;
                var leftartwork = omtrekartwork[0];
                var topartwork = omtrekartwork[1];
                var rightartwork = omtrekartwork[2];
                var bottomartwork = omtrekartwork[3];
                var origin = doc.rulerOrigin;
                var leftpage    = -origin[0];
                var toppage    = -origin[1] + doc.height;
                var rightpage    = -origin[0] + doc.width;
                var bottompage    = -origin[1];
                var centerxpage    = -origin[0] + doc.width/2;
                var centerypage    = -origin[1] + doc.height/2;
                var bleedleft = leftpage - leftartwork;
                var bleedright = rightartwork - rightpage;
                var bleedtop = topartwork - toppage;
                var bleedbottom = bottompage - bottomartwork;
                var breedteartwork = rightpage - leftpage;
                var hoogteartwork = toppage - bottompage;
                if (bleedleft <= 0 && bleedright <= 0 && bleedtop <= 0 && bleedbottom <=0){
                        var artLayer = doc.layers['BB'].groupItems.add();
                        targetDocument.layers['BB'].preview = false;
                        var rect = artLayer.pathItems.rectangle ((toppage + (20*omf)),(leftpage - (20*omf)), (breedteartwork + (40*omf)), (hoogteartwork + (40*omf)));
                        rect.filled = false;
                        rect.stroked = false;
                } else {
                        if    (bleedleft >= bleedright){
                            var bleedx = bleedleft + (20*omf);
                        } else {
                            var bleedx = bleedright + (20*omf);
                        if    (bleedbottom >= bleedtop){
                            var bleedy = bleedbottom + (20*omf);
                        } else {
                            var bleedy = bleedtop + (20*omf);
                        var artLayer = doc.layers['BB'].groupItems.add();
                        targetDocument.layers['BB'].preview = false;
                        var rect = artLayer.pathItems.rectangle ((toppage + bleedy),(leftpage - bleedx), (breedteartwork + (2*bleedx)), (hoogteartwork + (2*bleedy)));
                        rect.filled = false;
                        rect.stroked = false;
    function getBounds(obj) {
        var vbounds = new Array();
        if( obj.typename == 'TextFrame' ) {
            objcopy=obj.duplicate().createOutline();
            vbounds = objcopy.visibleBounds;
            objcopy.remove();
        else if( (obj.typename == 'GroupItem') && !obj.clipped ) {
            vbounds = getBounds(obj.pageItems[0]);
            for( n=1; n<obj.pageItems.length; n++  ) {
                vgb = getBounds(obj.pageItems[n]);
                if( vbounds[0] > vgb[0] ) vbounds[0] = vgb[0];
                if( vbounds[1] < vgb[1] ) vbounds[1] = vgb[1];
                if( vbounds[2] < vgb[2] ) vbounds[2] = vgb[2];
                if( vbounds[3] > vgb[3] ) vbounds[3] = vgb[3];
        else if( (obj.typename == 'GroupItem') && obj.clipped && (obj.pageItems.length > 1) ) {
            vbounds = getBounds(obj.pageItems[0]);
            cvgb = getBounds(obj.pageItems[1]);
            objleft = cvgb[0];
            objtop = cvgb[1];
            objright = cvgb[2];
            objbottom = cvgb[3];
            obj.pageItems[0].stroked ? so = 0 : so = 1;
            for( n=so; n<obj.pageItems.length; n++ ) {
                cvgb = getBounds(obj.pageItems[n]);
                if( objleft > cvgb[0] ) objleft = cvgb[0];
                if( objtop < cvgb[1] ) objtop = cvgb[1];
                if( objright < (cvgb[2]) ) objright = cvgb[2];
                if( objbottom > (cvgb[3]) ) objbottom = cvgb[3];
            if( vbounds[0] < objleft ) vbounds[0] = objleft;
            if( vbounds[1] > objtop ) vbounds[1] = objtop;
            if( vbounds[2] > objright ) vbounds[2] = objright;
            if( vbounds[3] < objbottom ) vbounds[3] = objbottom;
        else {
            vbounds = obj.visibleBounds;
        return vbounds;
    function getPosition(obj) {
        var b = new Array();
        bnds = getBounds(obj);
        b['left']    = bnds[0];
        b['top']    = bnds[1];
        b['right']    = bnds[2];
        b['bottom']    = bnds[3];
        b['centerX']    = bnds[0] + (bnds[2]-bnds[0])/2;
        b['centerY']    = bnds[1] - (bnds[1]-bnds[3])/2;
        return b;
    function getDocPosition() {
        var b = new Array();
        doc = activeDocument;
        var origin = doc.rulerOrigin;
        b['left']    = -origin[0];
        b['top']    = -origin[1] + doc.height;
        b['right']    = -origin[0] + doc.width;
        b['bottom']    = -origin[1];
        b['centerX']    = -origin[0] + doc.width/2;
        b['centerY']    = -origin[1] + doc.height/2;
        return b;

  • Viewing PDF in preview, black rectangles around links

    I've created a PDF in Microsoft Word 7.0, the PDF looks great in all applications except Preview on a mac. It would seem that all links in the PDF have a black rectangle around them, this only seems to be an issue in Preview, is this a known issue? As near as I can tell, no other applications seem to be interpreting these links as having boxes around them, this would lead me to believe that the problem does not lay with how the PDF was created.

    Hi,
    Can you try any other PDF file in Preview (not the one you created)
    Dimaxum

  • Strange Black Box around every prompt I am given...

    This is very strange. I started up iChat for the first time on MBP and am now having a very strange occurance. At every prompt there is a strange black box around it. For example, right now there is a black box around the back arrow in my safari browser. When I open the finder there is a black box around my hard drive. I just opened system preferences and there is a black box around the back arrow in system preferences box...
    Can anybody help me?
    MacBook Pro 2GHz, PowerBook G4, PowerMac G4   Mac OS X (10.4.5)  

    heheh ya it's funny when you look at the people who just hear the mac talking and they don't know wat to do.. but ya.. universal access is only for that.. for the F8 key is exposè, which is nothing related to Universal Access at all, so you can keep Universal Access options off and exposè will still running
    Anyway, you can configure both from the System Preferences.

  • Black rectangle around curser

    Hi,
    Straight after I finished installing the latest updtaes that came to me automatically there appeared on screen a black rectangle outline about 2 inches long by 1 1/2 inches high around my curser. it moves as I move the curser.
    I don't like it as it is distracting but have no idea how it got there and no idea how to get rid if it.
    I do hope someone can help me.
    Thanks
    Patricia
    MacBook    

    Follow the steps listed here:
    http://docs.info.apple.com/article.html?artnum=304496

  • Turn OFF Keyline rectangle around multiple selected elements.

    When selecting multiple elements in Illustrator, I want to see only the elements highlighted, not a keyline rectangle around the group of selections.
    Note these are free elements, not grouped.
    How do I turn this off?

    Thanks, I must have keyboard short-cutted this.
    It appears to be an application rather than a document level preference.

  • 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)

  • Unusual black border around anything selected.

    everytime I click on something a odd black border appears. I dont know what it is and it hasnt happened before.. any clue what it is and how to get rid of it?
    also in the apple drop down list my restart, shutdown, and logout options appear twice.. no idea why...
    any help would be sweet
    imac g5   Mac OS X (10.4.6)  

    http://discussions.apple.com/thread.jspa?messageID=2139761

  • Black boxes around selected items-

    While using Q-Xpress this morning on a flat panel G5 w/OS10.4.11,
    Black boxes started showing up on every item that is selected. Desktop items, also around the name on the top window of any open folder. I used the key command optshft5 by accident while in Xpress,but it didn't do anything. I needed to bring something to the front and F5 was what I should've pressed. Now these black lines appear around every selected item. I've looked in the sys prefs panel and every where else I can think. There doesn't seem to be any reference to this anywhere.
    Can anyone tell me what I've done?

    Have you looked in Universal Access>Seeing? Otherwise, reboot and reset your PRAM.

  • Preventing black boxes around hyperlinks?

    My document, created in Word 2010 and saved as a pdf in Adobe Acrobat X Pro 10 (newest version), has hyperlinks referring to other areas of the document.  The document looks fine on my screen (on a PC) and other screens, but on a particular computer (that happens to be a Mac desktop) it shows black rectangles around the hyperlinks when opened in Adobe Reader.
    I went into the edit links dialog, and it shows the Link Type as Invisible Rectangle.
    How to I prevent this from happening on certain computers?
    Thanks!

    The Reader should actually never show the frames, unless there is an extra option to do so (I don't know of any).
    In Acrobat, only with hyperlink tool selected, the frames are shown.
    What version of Reader on the Mac is it and are the frames bold or thin?

  • Black rectangles after 10.4.5 Upgrade?

    Help! I just did the automatic update to 10.4.5 and now I have black rectangles around many of the field windows, desktop icons, etc. It's especially annoying while using Quark.
    If I open a window box, the black rectangle superimposes itself over my layout.
    Is anyone else having the same problem?
    Can I uninstall 10.4.5 and go back to the former version?
    G5   Mac OS X (10.4.5)  

    katarina,
    Welcome to Apple Discussions.
    Mac OS X 10.4: Computer speaks unexpectedly, or a black box unexpectedly appears around a file, folder, or other item: If a black outline (or box) unexpectedly appears around a file, folder, icon, button, or other item when you click it, VoiceOver is probably enabled. Your computer might also be unexpectedly speaking items that you click on.
    If you don't want VoiceOver on, turn it off in the Universal Access preference pane, or by pressing Command-F5 (or Fn-Command-F5 if you have an iBook or PowerBook).;~)

  • Black border around buttons and boxes

      My browser displays a thick black rectangle around buttons and dropboxes. It affects webkit browsers, luakit and surf. This is a stripped down atom desktop. There is gtk 2 2.24, libwebkit 1.8.3, standard xorg, xf86-video-intel 2.20.5 (i915), and cairo, all from the arch repo, and linux-ck-atom 3.5.3 from AUR. I have cairo but no mesa and no compiz. Adding mesa doesn't fix it. But it's possible I removed some important graphic library. Any suggestions how I might fix it?
    Last edited by skeerly (2012-09-02 00:28:22)

    Thanks for the suggestions. The accelerators don't make a difference, neither does today's new intel driver. I've had the same version of cairo since June (1.12.2-1 -> 1.12.2-2) and this problem is recent. As a last resort I'll try to find an old cairo package. But maybe I should look into libwebkit or gtk first.

  • Black lines around fields I tab to incl. button, p-d menus

    Something weird is going on with my computer: there's a black square around the active field in every app on my PowerBook. For example, if I open a new window in Mail, there's a black line around the New Message icon (the upper-left-most icon in my toolbar configuration). When I start typing in the address field, the black line moves to that field. If I hit Tab, the black line goes to "cc:" then "subject" then the "add bcc..." pulldown menu, then the "account" and finally "signature" pulldown menus, before going to the message window. It's basically the same thing in every app-- an ugly square of thick black lines around every active field in the app I'm working in. I poked around Universal Access in System Prefs & nothing helped. I think my daughter was playing with the computer & did something to it but she's only a year old so I can't ask her! Please help me get rid of this thing! Thanks

    Hi There
    Have you tried System Preferences > Universal Access > Seeing > Voiceover:(Check) and click 'off'.
    Worked for me!

  • Black frame around slides

    I like the slideshow option in iDVD, but I would like to stretch the pictures all over my TV screen. Now, there is a large black frame around every slide. Is this possible?

    To solve this problem to "iDVD" in the menu and choose "Preferences".
    Choose the third tab called "Slideshow", you will get a panel with three checkboxes, uncheck the second ("Adjust dia size to tv-area") to fix the issue.
    (The option names and descriptions might be incorrect since we use a Dutch MacOSX version.)

  • HT204390 Black squares around icons on ipod

    I was playing around with my ipod and found myself in the general section. I clicked a few buttons and now my ipod is talking to me and there is a black square around every icon I click making it so i have to double click every app i want to go in. I have tried to undo what i had done by going back into general and clicking on settings but i cant scroll down to accessibilitys to turn this off. All helps appreciated

    You have the accessibility VoiceOver feature turned on.
    Triple click the home button and try going to Settings>General>Accessibility and turn VoiceOver off. You may have to use three fingers to scroll the screen to get there. If problems see the following for how to turn off via iTunes:
      iPhone: Configuring accessibility features (including VoiceOver and Zoom)

Maybe you are looking for

  • Static Class JMS Listener

    I am designing an EJB component (MessageDrivenBean) that requires dynamic ("hot") configuration changes. As such, the bean must be notified somehow of configuration changes in the DB (rather than have to poll the DB for changes at every method call).

  • I keep getting Error 3252 while trying to download tv shows on my laptop. How can i fix this issue

    like the title says I keep getting Error 3252 while trying to download tv shows on my laptop from itunes what can i do to fix the issue seeing as i can download music with no issue just tv shows are having issue with error 3252

  • Stock Determination process with examples

    Hi all I am working for the first time on Stock determination I have created Stock det group G001 Created Rule R001 And assigned both(Stock det Header) to Plant 1000 Next in stock determination item table i have defined that Special stock indicator -

  • Getting rid of RowSetTag in Oracle XML SQL utility

    Hi, I am using Oracle XMLSQL utility to get the query results in XML. I know that there will be just one row retrieved from the query. I do not want any <RowSet> tag and i want to set the <Row> tag. So, I did: query.setMaxRows(1); query.setRowSetTag(

  • Pogo games and Dashboard problems?

    Hi everyone.  I am having a problem ever since downloading Mountain Lion.  While playing Crossword Cove on Pogo I will switch to Dashboard dictionary and enter a word for it's definition, when I finally decide what the answer could be I am not able t