Space to the right of the trackpad...

I got my MacBook less than a month ago and I noticed that the space to the right of my tackpad (where my wrist rests while I'm tying) feels loose. It's hard to explain, but when I lift my right hand up from typing I hear a "click" type sound. It almost feels as if there is too much space between the case and the components inside. Does anybody else have this problem? Is it worth sending it in to get repaired?

I actually did take it to an apple store today. I was shocked to see how rough the Mac Genius treated my computer. He slammed down the top and took it to the back. He came back out and said since it was a cosmetic issue, there's nothing he could do. This is ticking me off...
Also, is anybody aware if apple is able to send out a new replacement computer, and then have me send this defective one back? I really can't afford to have much downtime without my computer for my profession.

Similar Messages

  • Can the trackpad with 4 fingers right/left change from Space to another?

    Hello.
    I guess the title says all. I wish I could use the trackpad with it's 4 fingers move right on the right or left to change from spaces and thus, without a new app.
    Thanks for you information!

    Hi
    Thank's for your quick reply.
    Well I asked *without a new app*, but I guess there are no easy workaround. No terminal command to use for that purpose? I'll go on with MagicPrefs if nothing new come, but I'm not keen on installing a new app for such "small" feature.
    Let's wait and see if a geek comes here .

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

  • Why is there a huge white space to the right of the board when I play Lexulous on Facebook?

    I play Lexulous (a form of Scrabble) on Facebook. For months now, whenever I play the game, there is a huge white space to the right of the board, like a whole other window. Only with this app. I tried another browser, same thing, and it also does it on my laptop (MacBook Pro). I asked the Lexulous help desk and attached a screenshot; they had no idea what would cause that to happen. I asked a couple of my regular opponents and they are not seeing it. It's really annoying because if I accidentally touch my mouse to the bottom scroll bar, the board slides offscreen to the left.
    Sorry if this is the wrong forum for this question, but I'd like to fix it.

    If you are using Safari to connect to Facebook, try this on one of the Macs.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab.
    If there are any installled, turn that OFF, quit and relaunch Safari and try that game.

  • Too much white space to the right when previewing it in my phone using inspect. Why?

    Using edge reflow to create a responsive landing page and inspect to connect to my device.
    I tried to preview it but there's so much white space to the right which i can scroll horizontally through the screen.
    my width is 100%  even my container. why is that? Chrome preview is looking fine btw.
    thanks for whoever can give me an answer advance!!

    How does your page look when you make the canvas narrow in Reflow?
    Vic

  • Delete spaces on the right of a string of characters

    Hi,
    I'd like to know how to delete space on the right of a string of characters and ONLY the ones on the right in order I can get the real length of the string (I don't want to condense the spaces between words even though there's more than one).
    data: text(20).
    text = 'SAP Forum'
    In this case, if I use both DESCRIBE LENGTH and DESCRIBE OUTPUT LENGTH, the result will be 20, but the real length is 9.

    Use STRLEN( ), as described by the other posters.
    To delete space chars on the right of a string, use following static method:
    CALL METHOD cl_abap_string_utilities=>del_trailing_blanks
      CHANGING
         str = lv_text.

  • Contribute 6.5 moves editing space to the right of the screen.

    Contribute 6.5 moves editing space to the right of the screen. Recently updated to 6.5 from CS5.
    We are currently expanding our website and the issue we are experiencing happens on the demo site. CS 6.5 opens the old site fine.
    When the pages were opened in CS4 prior to the upgrade the editing space was in the center where the body of the page would normally appear. Now, when I open the pages and the entire "body" is shifted into a narrow ~100 pixel column to the right of the website. This is inconsistent at best. Sometimes the page when edited will open normally, others it will not. Sometimes the header will appear as a graphic, and others it appears as text. All pages open and function properly in CS4.

    The short of time dos not bode well
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • Browser extra space to the right of page

    Hi,
    I hope someone may be able to help, I have noticed the website in the link below has about an inch of extra space to the right of the page.  The header and footer containers are all set to fit the browser width so I'm baffled as to why this extra space is visible.  I removed the image but it didn't make any difference.
    HOME  |  Total Clothing Solutions
    Thanks in advance

    Thank you so much, you were spot on ! it was the search bar!
    Thanks again

  • How do I "Right Click" on the Trackpad?

    I know this is a "newbie" question but what is the motion on the trackpad for a "right click". Please bear with me, this is my first Mac laptop. Thanks!

    Hi,
    two options: hold CNTRL while doing a click.
    The preferred one is to use a two-finger tap for right-click. You have to enable that feature via System preferences -> Mouse/Trackpad. This is where you also see all the small movies about multi-touch options for the trackpad.
    Volker

  • Right mouse button with the trackpad

    I read that on the 17 inch MBP there's an option to imitate the right mouse button by clicking when having two fingers on the trackpad (instead of Ctrl-click). Can anybody say whether this is something unique to 17 inch MBP hardware or whether we can also get it to work on the 15.4 inch MBP's?

    Hello,
    I asked this yesterday in another thread. Can someone
    with a new 17" please check and see what version of
    OSX you have. Is it 10.4.6? Or maybe 10.4.7 which we
    could see in an update soon.
    Apple will not have updated the OS revision number for the newer systems.
    What they do, is update the "Build" of the OS version.
    For example, when the iMac G5 came out, there was a custom "Build" version released with that machine (only on that machine).
    Then, when the second version and 3rd versions were released, they again released custom build revisions for those machines.
    These custom "builds" are essentially the latest OS available with a couple of tweaks to enable new features unique to that machine.
    So, what they would see is a different "Build" number than the build number on the 15-inch systems.
    This number can be found by clicking on "About this Mac" in the Apple Menu. Then, click once on the "Version 10.4.6" line where it is displayed in the box. The "Version 10.4.6" line will then change to a line that reads "Build XXXXX". On my Mac Mini with the retail 10.4.6 installed, it says "Build 8I127".
    Clicking on the build number will then display your computer's serial number. Clicking on the serial number will then switch back to displaying Version 10.4.6.
    This Build number will likely be different on machines released after 10.4.6 was available to reflect customizations to 10.4.6 that are unique to that machine.
    Keep in mind that the build number also changes with each update to OS 10.4.x that you install using software update. So, this build number will only be helpful if you check it before any updates are applied.

  • My left and right click on the trackpad don't work.

    From reading a number of the posts here, it would seem that trackpads not working is an issue that Apple may need to look into. I have personally resorted to using a mouse and the trackpad as a touchpad. For all the finger gestures, my trackpad works fine, but it doesn't respond at all to the left or right click options. It clicks audibly, but neither responds. There were some posts about playing around with a PRAM (whatever that may be), but surely there must be a more definitive solution. Does anyone know if this is an issue that is being addressed by Apple or does anyone know of a permanent solution? I don't mind continue to use the external mouse, but it seems a shame that the trackpad malfunctions and there is no apparent solution; that's unlike an Apple product. Your input would be appreciated.

    This fixed it :
    "Solution:
    With the laptop open, turn it on to it's side. Repeatedly click the trackpad with a firm, but not excessive amount of force. Put the laptop on the other side and repeat.
    I can't explain why this works. Perhaps some amount of debris or dust has built up under there ? I went from not being able to click-drag without an excessive amount of pressure, back to a normal amount of pressure after doing this."

  • Right-clicking with the trackpad button?

    Hi,
    Is there a way to enable the trackpad button on my Macbook to right-click? If there is, would someone please post how to do it. Thanks in advance. I appreciate it.
    Harbeth
    iMac G5 & BlackBook   Mac OS X (10.4.6)  

    Welcome to the Apple Discussions!
    There are a couple of different ways. If you hold down on the "control" key while you click, you will get the contextual menus. Also, in the Mouse & Keyboard System Preferences, under the "Trackpad" tab, you should be able to enable the two-finger clicking to get the contextual menu (if it's not already enabled). In other words, if you're holding down on the keypad with two fingers while you click, you'll get the right-click menu.
    -Doug

  • Spare space on the right.

    Seems that there is a bug relating the sizing of panels and sub panels.
    I've a main panel, containing other two panels, each of them containing
    several gadgets.
    The main panel has an orizontal boxlayout arrangement so it should
    arrange the other two panels side by side.
    The left subpanel has a gridbag layout, and the right one has
    a vertical box layout.
    What i see is that there is spare space to the right of the second panel
    I can see it giving the panels different backgrouns colors.
    Any suggestion ?
    I can post the code if wanted.
    Regards
    Maurizio

    Don't mind, it was my fault.
    I've added an invisible box to the right of the right panel

  • Google Plus notification pull-down bar white space on the right

    Google+ notification pull-down bar shows white space on the right side witch is not suppose to be there.
    I have Google Chrome installed and do not have this problem.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Cp 8 - How to add ppt slides to an existing project with space to the left and right ?

    After much trial and error, i know exactly what I want. The priority for me is clear and unscaled captured video, and my project resolution shall be 1260x700. 
    now, i want to bring my ppt slides in and respect the aspect ratio- this means that there will be blank space to the left and right of the slides. The active area of the ppt slide should be about  700 h and 4/3 * 700 width. To avoid scaling, i would love them to be 699 x 932 and have the areas to the left and right blank. i am also willing to make my project 1260x702.
    The objective here is to avoid scaling. I have seen that things look great when scaling is avoided.

    Maybe you'll find some ideas here: Create and Use a "Knockout" Master Slide - Captivate blog

Maybe you are looking for

  • Need help using WITH clause

    I have an update statement that is using the same suquery twice. I am not usre if WITh clause be used in update statements? Is there a way the below statement can be modified to use WITH clause? UPDATE EMP_TRACKING_LIST L SET ACTIVE_FLAG = DECODE((SE

  • XI Interface With CRM RFC

    I have a BAPI in CRM that I call from XI via RFC. In CRM, I want to be able to see what happens with the function; whether it fails, abends, etc. I have some strange things happen and am trying to trouble shoot the cause. From the XI side, all looks

  • SAP Netweaver 7.01: JSPM Problem

    Hi, I have this system: SAP netweaver Abap+Java 7.01 SP3 I want to update the Java whit JSPM to sp 06, when i try it give me this error: Jun 13, 2011 10:57:44 AM [Error]: Cannot stop service for instance -1. Jun 13, 2011 10:57:44 AM [Error]: Cannot s

  • OSX 10.5.1 Server - Workstation sees the Drive but it will not mount

    I have a dual G5 acting as server. There is 1 TB drive partitioned into 4 drives. Leopard Server is installed on one partition. The other 3 are then defined as Share Points for users to use. When I log in from one of my other machines ( a Mac Mini or

  • 0kb free 0 kb used

    my nano 3g suddenly says it has no files on it and when im go to about it shows 0 0kb used and free i have no music or anything on it