Desktop moves with mouse!

A friend reported to me from work that when she mouses, the whole desktop on her computer (10.4.11, but not sure what model, maybe a G4 tower) moves with the mouse movement! Is this a known issue? Any solution?

Hi there,
It sounds as if she might have accidently enabled the zoom feature. This can be toggled on and off using the cmdoption8 combination or in the 'Universal Access' pane of System Preferences. The zoom level can be controlled with the cmdoption'=' or cmdoption'-' keyboard combinations.
Yang

Similar Messages

  • Every time I move my mouse, my entire desktop moves with the mouse!!!!!!

    Wow - I have no idea what's going on. I was surfing the net and all of a sudden when I move my mouse everything I see moves with it. I've tried restarting, shut down, etc. I tried restarting with Disk Warrior holding down c and then it disappears - but Warrior says my disk is too severely damaged to repair? So I restart again and when my desktop appears all my icons shift off the screen. Again, I move my mouse and everything moves with it -PLEASE HELP!!!

    It sounds like your display is zoomed. Open System Preferences, Universal Access window. You will probable see that "Zoom" is set to "On". You can either turn it off there, or use the hotkey combination cmd-option-8 to toggle Zooming. See there is also a hotkey for zooming in and out. You must have hit the "zoom in" hotkey inadvertently.
    If you click the "Options" button, you see the settings that are causing the window to relocate. At the bottom, you probably have "Continuously with pointer" selected.
    I should mention that 10.4.9 has two odd glitches that cause the display to shift around, these are probably soon-to-be-implemented features in 10.5.

  • Desktop moves with the arrow & cursor!

    I pressed hard on the command key by mistake while doing another function (not sure what) & my  arrow control went out of wack.
    When I use one finger on the trackpad and move the arrow or the cursor around,  the whole desktop moves in synch.
    It happens with both the trackpad and the mouse..It's irritating and dizzying. I have reset the trackpad and mouse controls, rebooted the system, looked for solutions online, and nothing works. PLZ HLP!

    Turn off Zoom from the Universal Access and Keyboard & Mouse panes of System Preferences.
    (113514)

  • Entire desktop shifting with mouse use

    I have a powerPC g5 tower with a 23" cinemaHD monitor, running leopard.
    About a month ago while still on Tiger, my mouse behavior started acting weird. When I mouse around the screen, the desktop actually moves by 4-8 pixels or so. It's as if the desktop is 1920x1200 but the monitor itself is all the sudden 1915x1195. It's not just the background either - all the pixels on the screen shift, including the applications I'm running and the menu bar across the top of the screen. It's very annoying when any mouse work moves the screen around on you, even if it is only by a few pixels. I bought a new mouse and upgraded to Leopard - things I was planning to do anyway, and neither fixed the problem.
    Under system preferences, my monitor is correctly set to 1920x1200. If I change to another resolution, the problem is there at that resolution too. I'm sure it's a simple setting somewhere, but I sure as heck can't find it.
    Any help anyone?

    You have the magnification turned on.
    In Preferences, open Universal Access and see if you have zoom turned on there.
    Also in your keyboard and mouse in Preferences you may have the zoom with mouse turned on.
    That's all it is.

  • Character movement with mouse click

    This will be for an MMO online game/ world. So it needs to be good.
    Hi guys. I'm really happy I got this to work as I'm a neebie to AS3 but getting to love its simplicity. My problem is not my AS3 but my maths.
    I click the mouse and the movieclip runs to the mouse's x position. However, it only goes in one direction ie: downwards and to the right.
    I need to it go in all directions depending on where I click. I suppose it has to do with comparing x and y positions of both mouse and mc - ie: if one is bigger than the other then you can tell where both are positioned and then put the code in. Am I right and does anybody hace a little code like this flying around for me?
    import flash.display.Stage;
    import flash.events.Event;
    stage.addEventListener(MouseEvent.CLICK, myClickReaction);
    function myClickReaction (e:MouseEvent):void{
        sunny.gotoAndPlay("runback")
        //sunny.x = root.stage.mouseX
        //sunny.y = root.stage.mouseY
        addEventListener(Event.ENTER_FRAME, onEnterFrame);
    function onEnterFrame(event:Event):void {
                 var xDistance:Number
                 var yDistance:Number
                //mc increments by 5 until it reaches mouse - mc (ie the distance)
                sunny.x += 5;
                sunny.y += 5;
                xDistance = root.stage.mouseX - sunny.x
                trace (xDistance)
                if (xDistance <= 0 ) {
                trace("works")
                sunny.gotoAndPlay("static")
                removeEventListener(Event.ENTER_FRAME, onEnterFrame);

    Thanks for contacting but the code more or less works already apart from the comments below.
    The position I get comparing mousex position and movieclip position. BUT it goes loopy when I move the mouse around. ie: I need the coordinates when I click and not a variable that changes while I move mouse around.
    I will check it out now.
    import flash.display.Stage;
    import flash.events.Event;
    stage.addEventListener(MouseEvent.CLICK, myClickReaction);
    function myClickReaction (e:MouseEvent):void{
    //sunny.x = root.stage.mouseX
    //sunny.y = root.stage.mouseY
    addEventListener(Event.ENTER_FRAME, onEnterFrame);
    function onEnterFrame(event:Event):void {
                 var xDistance:Number
        var yDistance:Number
       //mc increments by 5 until it reaches mouse - mc (ie the distance)
                // if you click to the right of sunny then mouse is > than sunny.x so x = 5
       if (root.stage.mouseX > sunny.x) {
        sunny.gotoAndPlay("walk right")
        sunny.x += 5;
        sunny.y += 0;
        xDistance = root.stage.mouseX - sunny.x
        //if (xDistance <= 0 ) {
        //sunny.gotoAndPlay("static")
        //removeEventListener(Event.ENTER_FRAME, onEnterFrame);

  • How to control the speed of nested movie with mouse

    I have a movie nested inside another movie with pictures that
    scroll horizontally across the screen. I would like the user to be
    able to control the speed and direction of the pictures by moving
    their mouse. Can anyone give me some insight on where to look to
    find out how to do this?
    If this can't be done then perhaps add controls on the screen
    to stop / play / speed up / slow down the horizontal scrolling
    pictures

    it can be done. search for a scrolling movieclip tutorial
    using google or at flashkit.com

  • Controlling movie with mouse location

    I am a designer trying to be a flash programmer and I have a
    navigation idea that I've been struggling with. I am simply trying
    to do this: put a movie on the stage and as the mouse moves closer
    or farther from the movie, it plays forwards and backwards. The
    movie I made is a circular logo with navigation buttons curling out
    from it like a jack knife. My idea is to have the buttons curl out
    as the user moves the mouse closer to the logo and curl back in as
    the mouse moves away.
    I understand the coding concept - calculate where the cursor
    is on the stage, figure out the distance of the cursor to the logo
    movie, and just go to certain frames in the logo movie based on
    that distance.
    I have the stage, the logo movie, and even the code to figure
    out the the mouse location. But beyond that, I need help. I just
    don't know enough about actionscript syntax and although
    conceptually this seems like a basic exercise, I really don't know
    where to start. If anyone is willing to help, the .fla file can be
    downloaded here:
    http://0099d33.netsolhost.com/westside-home2.fla
    Thanks so much for any help you can offer.
    null

    You would replace the one mDistance line in your original
    with the three I've given you. But if you weren't able to figure
    that bit out, you might not be able to figure out how to modify the
    whichFrame line either? Do you have a conceptual understanding of
    what your code is doing? Being able to read the code and understand
    what it is doing is really central to Actionscript. So here goes:
    mcLogo.onEnterframe: this is attaching some code that will
    repeat at the frame rate of the movie to the mcLogo instance. Even
    if there is a stop() on the timeline, this code will continue to
    repeat at the framerate set by your movie. By attaching it to
    mcLogo your scope will be mcLogo.
    In both version the next line (or three in my case) say find
    the distance between the current mouse position and this._x (for
    example). Since we are inside an onEnterFrame which is attache to
    mcLogo, so "this" refers to that time line. So this._x is saying
    the _x location of the mcLogo clip.
    If you remember basic geometry a right hand triangle's long
    side (the hypotenuse) is given by h^2 = a^2 + b^2. (The square of
    the hypotenuse is equal to the sum of the squares of the other two
    sides.) So we are figuring out how far between mcLogo and the mouse
    in the x and the y directions. This gives us the other two sides.
    So the distance between the mouse and the clip is the square root
    of the sum of the squares of those two sides.
    Finally since you need to adjust the distance to some scale
    of the number of frames you have added to your clip. So your have
    some code that makes the distance proportional to the number for
    frames in your clip.
    As for the second part of your question, "Don't use scenes!"
    So that makes that easy. Scenes are great tools for organizing your
    timelines when you are just doing some timeline-based animations.
    But when using Actionscript there are some bugs and limitation in
    scenes and you are only asking for trouble.
    So if you have this code say on frame ten with a stop().
    There is no looping that needs to happen. The onEnterFrame will
    continue doing the animation until someone clicks.
    Add maybe ten blank frames after 10 and then on frame 20 put
    your new thing you want – perhaps even give it a frame label
    called, "home" or "about" or whatever section it is about. Then you
    can use:
    this.gotoAndPlay("about");
    Also don't forget that you will want to remove the
    onEnterFrame event because otherwise it will keep running. So you
    should probably also include:
    delete mcLogo.onEnterframe;

  • KDE Desktop Cube with mouse

    Is there any way to activate the desktop cube with the mouse left, right or middle click or any combination of a mouse click and keyboard keys like it does in Compiz? The custom shortcut apparently only allows keyboard keys.
    Oh, and while I'm at it, is there a way to make the desktop cube switch animation use the same background that you set on the "Desktop Cube" options on the desktop effect options? It only shows a black background when you switch virtual desktops with the cube animation.

    Hey there!
    toad wrote:systemsettings - workspace behaviour - screen edges
    The most I can get with those settings are to change virtual desktop when the cursor touches the edges of the screen. What I asked was another thing... I'd like to activate the desktop cube (the one that's on System Settings -> Desktop effects -> All effects (tab) -> Desktop Cube) by using the mouse click instead (or in combination with keyboard keys, like in Compiz's Ctrl+Alt+Left Click). My question wasn't regarding the virtual desktop switching.
    toad wrote:systemsettings - desktop effects - all effects (tab) - desktop cube, select background wallpaper
    That does set a background to the desktop cube. However, it doesn't set any background when I switch virtual desktops with the Pager, or the desktop switch shortcut (Ctrl +F1, Ctrl + F2, etc), the background is black.

  • Frozen icons - files will not move with mouse.

    Hello, all.
    All of a sudden I noticed that the icons on notebook's desktop have stopped responding to my mouse commands. I've tried with the built-in trackpad as well as with an external mouse. I've also tried to create a test user but the same happens.
    I have also booted the system with Leopard's installation DVD and verified/repaired permissions to ensure that it wasn't the problem but the same continues to happen. I also verified read and write rights to these folders but nothing seems to be out of order (at least nothing that I can see).
    This started happening after the internal drive became full and my wife deleted several photos stored in iPhoto.
    Any ideas of what might be the cause and how to fix it ?
    Thank you in advance for your help.
    Joseph

    Just upgraded to 10.5.8 today and suddenly this problem appeared.
    The thread starter tried his best to explain the problem but everyone seemed to be suggesting things that were not responsive to this problem (yet plausible overlooks for a n00b on OS X)
    Let me first say that I have been using a Mac since 1988, and OS X since the day the Public Beta released. So, I know all the little tricks to try like zapping the PRAM, checking the align to grid settings and other stuff we used to try, just before disabling extensions and rebuilding the desktop :P
    Here's what I am seeing: Any icon displayed in icon view is selectable, but immovable. You can double click on the icon to launch it, right click on it...do everything except move it. Even tried some of the old favorites like holding down a modifier key and dragging. Nope, still locked down.
    I looked deep to find if there wasn't some kind of "Lock icons in place" setting in the 10.5.8 update that accidentally got enabled by default.
    Also tried starting up with no battery or other accessories plugged in (after zapping the PRAM a few times).
    Tried logging in to another account on the machine to see if it was my user account that was corrupted - same results in my son's account.
    I am running a MacBook Pro 2.33 with 10.5.8 and 2GB of RAM.
    This seems suspiciously tied to the update, but it may be a nasty coincidence. I have been holding off on installing my Snow Leopard upgrade because of the CS3 issues I have heard about. I hope this is not the "force point" on that. And rebuilding my drive from scratch? Ugh! I think I would just move to an "off the grid" commune instead of facing that one.
    Any help would be greatly appreciated.
    Thanks!
    Mike
    UPDATE: this problem is affecting all dragging, not just icons. I just tried to drag the URL for this thread from the address bar to the desktop for later reference. Nope. Allows me to double click to select it, but not drag it.
    Message was edited by: Fiodan
    Message was edited by: Fiodan

  • Can't select desktop items with mouse...

    Good day,
    I am having an issue with a G4 Quicksilver workstation at my office that is running OS 10.4.10. it seems that i can not use my mouse to select any items on my desktop. i can tab through all of the items, and my mouse is able to work the menus fine, but i cannot open or even select anything that is on the desktop, including my dock. has anyone else ever heard of such a problem, and if so, is there a simple fix for it?
    thanks in advance,
    cr

    Hi Chris,
    Try reinstalling the drivers that came with the mouse.
    Carolyn

  • Camera moves with mouse

    Hi guys,
    Just a quick post with HOPEFULLY a quick and helpful answer.
    See
    the background effect on this game which moves the background
    when the mouse is moved, I would love to know how to make something
    similar to that. Can you either, Direct me to a tutorial that will
    teach me how to do this OR do you know the script to do this?
    All help is appriciated!
    Thankyou!

    well, if you really want to duplicate the effect of your
    link, just use a scrolling movieclip whose scrolling is a function
    of the mouse position.
    the class below sets up the scrolling for a member of the
    class. usually a mask is used to display the scrolling movieclip
    and this class requires one. just use a mask movieclip the same
    dimensions as your stage:

  • Disable switching desktop OpenBox with mouse wheel

    How do i disable the option of switching desktops (1st and 2nd desktop) with the mouse wheel or the wheel in the touchpad? (using OpenBox with touchpad synaptics)

    remove this code from your rc.xml
    <mousebind button="Up" action="Click">
    <action name="DesktopPrevious"/>
    </mousebind>
    <mousebind button="Down" action="Click">
    <action name="DesktopNext"/>
    </mousebind>
    PS: don't forget to backup first.

  • Action Script to restart movie with mouse

    I added code using Script Assist in Flash CS4 to pause the
    movie at the end frame until the user clicks on the mouse to
    restart it. Seemed so easy but I have tried everything I can think
    of and nothing works. I actually did this in an earlier version of
    Action Script and now I am lost. The code I used is attached. Any
    help is greatly appreciated!
    Richard

    Installed and working. Thanks for the code!

  • Screen Image moves with pointer

    Entire Screen moves with mouse pointer. The dock and menu bar do not fit on the screen at the same time. MacBookPro 10.4.11 Problem started suddenly today. Thanks for helping me.

    Yeah, sounds like you may have zoomed in. Control+the two finger scrolling swipe should zoom you in and out (and back to normal), or you can also use command/option/+ or -. I think this is a super handy feature and rather than turning it off you may wish to adjust how it works in system preferences/universal access (you can control the zoom speed and whether the screen moves with the cursor, or when the cursor gets to the edge, etc).

  • Desktop Moving With My Mouse Movements!

    This is a weird one for me, as I've never seen it before.
    I booted up my Mac Mini this afternoon, and when I moved my mouse, my desktop moved with it! Kind of hard to describe, but whichever way I move the mouse then the whole desktop image moves with it, regardless of what I am doing.
    I have tried the Command Option P & R startup and looked in the system preferences, but I'm so far admitting defeat on this one!
    Any ideas?

    Hi Samsong-
    You have zoom enabled on the mouse.
    If you hold the control key while scrolling up or down is one way zoom becomes enabled and the mouse will do that. Try holding the control key down and scroll all the way out.
    Zoom can be configured in the mouse preferences.
    Luck-
    -DaddyPaycheck

Maybe you are looking for