Keynote Crashes When I Move Objects With Arrow Keys

Subject explains it all.
This happens on both my 2.4GHZ Intel iMac and G4 powerbook.
Machines are running OS 10.5.2 and Keynote 2.0.2
I've bought both Leopard and Keynote and installed all the software from the CDs.
Message was edited by: linus.spindrift

The advice I would take from the last post would be used only to isolate the issue as it might relate to a system wide issue or a user specific issue. In other words, can we determine Keynote's behavior as being related to your home account and those files in your folder or the System (OS) level files? Read on please…
If, after creating a new user account and logging into and Keynote continues to behave the same way, then potentially there is file outside your homefolder responsible for this. The file in question would, I'm sure you would agree, be a file related to Keynote's functionality and is accessed while Keynote is in use.
When Keynote is attempting to follow your instructions it may be accessing a file that it relies on.
A program which you can download to troubleshoot the issue is called appzapper, you can visit the developer's site here: http://appzapper.com/
My suggestion would be to download this little app. Install it>drag and drop Keynote onto AppZapper. AppZapper will do its' best to find files relevant to the Keynote application and give you an opportunity to trash them.
If you are curious as to the files AppZapper associates with Keynote, copy the name of those files and do a Google search to find out more about those files.
In most cases the list of files, AppZapper associates are harmless if trashed, just make sure Keynote is not open while doing this or Keynote may sort of ask itself what is going on and behave oddly, a quit and relaunch should fix that if you forget to quit Keynote.
Good target files that AppZapper might find are what are known as .plist files, plist as in PropertyList. .plist files typically store application preferences. So if you have ever gone to the preferences for Keynote in this case and modified the settings that .plist file would have stored those changes you set. If you move the .plist files to the trash, Keynote, upon a relaunch will say to itself, oh look, my .plist files are missing and simply regenerate those .plist files.
The point here is if the .plist files were corrupt and Keynote was accessing those file(s) it would try to read the file and say to itself, hey I don't know how to read this and in this case, shut itself down.
AppZapper may find more than just .plist files, investigate any files you feel hesitant to trash using your our old friend Google to learn about what it is you are going to trash.
In most cases what AppZapper finds is safe enough to trash, just be sure to close Keynote before running this to keep Keynote from running into any unexpected surprises. It would be like yanking candy from a child's hand - that wouldn't be too nice.
Finally if the issue persists, using DVD1 that came bundled with your mac, you should be able to install the bundled software only.
Reinstalling Keynote or iLife should also be considered as a solution.
An entire OS purchase or OS re-installation is definitely overkill and not an elegant solution, not to mention the downtime.
The solution I am proposing hopefully makes common sense to you and gives you an overview in terms of understanding that there are files other than the application file related to any application's overall function.
AppZapper is a small download and may help you locate that stubborn file causing you grief.
That being said, creating a new user account on your mac and logging into it to isolate issues as being system wide or user specific is indeed the way to go to isolate issues in those terms.
Keep us posted.
Message was edited by: santoscork
Message was edited by: santoscork

Similar Messages

  • Labview 2009 SP1 crashes when moving large selection with arrow key

    If I select a lot (10 or 15) of Block Diagram components and try to move them some distance with the arrow key, I will frequently get a program crash.  Since a smaller number of components seems to crash after a longer travel distance, it looks like some kind of buffer overflow error.  I do not see this problem when using the mouse to move selections.
    I have checked to be sure I have the latest video driver for my NVIDIA Quatro FX570.  I have also tried working with no hardware acceleration and no combined writes.  This is happening on Windows XP SP3 with all the current updates.
    It has become so bad that I have to do a Save As every fifteen minutes to keep from losing data.
    Why don't I use my mouse for all movements?  Because it is not as accurate and not so easy to restrict to one dimension of movement.   My hand is not as steady as it once was.
    I hoping someone will have a suggestion that will clear up this problem.
    Solved!
    Go to Solution.

    As I indicated, I had the same problem with 8.5 and just DID a new installation of Labview 2009.
    Since it is possible my three-monitor setup, which obviously requires more video memory, may be at the root of the problem, I am satisfied with the workaround of dragging the objects near their final destination and then using the arrow keys.  
    Three monitors are ideal for front panel, block diagram and Help/Internet/Probe Window.  When I had to work in the field with only one monitor, I felt severely handicapped.
    You may consider the matter closed.
    Thanks for attempting to duplicate the failure.

  • InDesign CC crashes when i move objects

    Hi,
    Installed InDesign CC yesterday, have rebooted since then.
    Both x64 and x32 versions crash when i move objects, i can use Nudge with arrows and transformation to change size.
    But not using mouse/keyboard like SHIFT and change size... or just moving an object with a mouse.
    Sorry for swedish error message:
    Felet uppstod i programmet med namn: InDesign.exe, version 9.0.0.244, tidsstämpel 0x5176f4c7
    , felet uppstod i modulen med namn: SPREAD UI.RPLN, version 9.0.0.244, tidsstämpel 0x5176f933
    Undantagskod: 0xc0000005
    Felförskjutning: 0x0000000000018ab8
    Process-ID: 0x2088
    Programmets starttid: 0x01ce6ce462f70a9b
    Sökväg till program: J:\Program\Adobe\Adobe InDesign CC (64 bit)\InDesign.exe
    Sökväg till modul: J:\Program\Adobe\Adobe InDesign CC (64 bit)\Required\SPREAD UI.RPLN
    Rapport-ID: a6c178b1-d8d7-11e2-be9e-0026833a19fd
    Fullständigt namn på felaktigt paket:
    Program-ID relativt till felaktigt paket:

    I Created a new documented and pasted everything and re-saved. That fixed my issue. So something must have gotten corrupt :|

  • Artifacts when moving object with arrow keys.

    Hi all
    hope this is the right place to post this question.
    I want to to write simple arkanoid game in Flash (AC3). I've managed to write code that  moves my paddle with arrow keys. The code looks like this:
    function OnNewFrame(event:Event):void
        if (input.IsLeftHeld)
            if (paddle.x > 0)
                paddle.x -= 10;
        else
        if (input.IsRightHeld)
            if (paddle.x < stage.stageWidth - paddle.width)
                paddle.x += 10;
    It works but the result is ugly. The animation is not fluent, there are times when paddle stops for a moment . Also when speed of translation is high (here it is 10) you can see that paddle is flickering at the ends, it looks like single buffering problem. You can see both of those effects here:  http://www.flash-game-design.com/flash-tutorials/movOb.html , hovewer flickering is less visible due to small translation amount.
    How to fix this? How can i enable double buffering (or maybe it is enabled by default)?  Any help will be appreciated.
    P.S. sorry for bad english

    Thanks for samples, this is very kind ; p
    Hovewer you are doing everything almost exactly as I'am doing. Tou are using mySymbol.x++ which means your translation speed is 1. Also I'am aware that rising frame rate will result in smoother animations, but this is not the point. So once again, my flash applications suffer from two problems:
    1) Animations are not smooth. You can see this crealrly in here: http://www.kirupa.com/developer/actionscript/hittest.htm  , go back to the very bottom of the page, there is an animation window, look at the smallest circle. It looks like its blinking. 
    2) Moving symbols with arrow keys with the method i've presnted in the first post (the same method that infeter uses ). Moved symbol is randomly stopping for the very (very very) short amount of time. You can easily spot this in infeter sample.
    Many sample applications i've seen suffer from those issues. and nobody seems to see the problem, so maybe I am delusional? ; p
    cheers and thank for help

  • Can't move an object with arrow keys - CS3

    In Fash CS3, suddenly, in certain files, I can't move an object left using arrow keys - but I can move the same object right, or if I hold down Shift + left arrow, it works correctly
    Also - I can move the object down with arrow keys, but not up
    Workaround - move an object on a different layer, then return to the problem object and it moves correctly. But this doesn't last long, the problem resurfaces.
    Does anyone have a solution for this? (I've tried rebooting; tried copying all the layers into a new file - no help.)

    Now, working in the same file, I just clicked on a stroke and it changed the stroke from a smooth curve to angular lines.
    I suspect this file is corrupt. Any thoughts on how to salvage the weeks of work that have gone into it? Every version of this file has the same issues.
    Thanks for any help.

  • Cannot Move Objects with Arrows - Ai CS5

    For some reason I cannot move objects with my arrow keys in Illustrator cs5. I can drag them and transform-move them but the arrow keys don't work. very annoying.
    Any clues as to what I can do to fix this?
    Thanks!

    Could happen if your keyboard increment value is zero or a very low number.

  • Moving Movie Clips with Arrow keys

    How do i make it so when i click the left arrow key, it will
    change the movie clip to make it turn around?

    Yes, that's what the code I gave you is intended to do....
    you replace that code with whatever action you need to take to turn
    your movie around.
    I have no idea what your movieclip is doing, but I'm guessing
    by your response that if it was an arrow pointing left to right
    (just an example), you want it to be pointing right to left when
    the left arrow is pressed. If you want an immediate turn around,
    then the simplest way to do that is to have another frame
    containing the movieclip that it moves to where it faces the other
    direction--and to have it appear turned around, from the toolbar
    you select Modify -> Transform -> Flip Horizontal.
    So the movieclip would live inside another movieclip that has
    two frames with stop()'s for each frame. In the first frame you
    would have the subclip facing left to right, and in the second you
    would have it facing right to left. If we call that 2-framed
    movieclip "walker", the code I provided before would
    become...

  • InDesign CC keeps crashing when I move objects?

    Whenever I try to move text/objects in InDesign CC the program crashes. I completely uninstalled indesign and reinstalled it, but it's still crashing when I try to move things with my mouse. It lets me move things with the arrow keys or clicking the arrows at the top, and it also lets me rotate and transform things, I just can't drag them.

    It's not allowing me to download the update. The CC app isn't showing that have any updates and when I tried to download the update directly it says "Updates have been surpressed by administrator".

  • I can no longer move an object with arrow keys

    Pretty sure I have inadvertently disabled the option to select an object and move it with the arrow keys on my keyboard, but cannot figure out what I did - or how to enable that option again.
    Illustrator CC
    27" iMAC late 2013
    OS 10.9.5

    Found the answer in another thread. Somehow my keyboard increment was changed to a measurement so small (.00002") that I couldn't see the object move, nor did the X & Y coordinates change. I did not change this preference to .00002", but it is now fixed.

  • Moving anchor point with arrow keys crashes Photoshop CC

    Hey guys,
    I've recently run into this bug many times while working with shapes. Don't really know what initiates it but it's super annoying as it crashes the PS CC completely without possiblity of recovering the unsaved files.
    The bug appears while working with shapes after file is saved and reopened. Because I use to design pixel-perfect UIs, I work with arrow keys a lot to be sure every pixel is in the right place. So after selecting one or more anchor points of shape and hitting any arrow key (to move it by pixel), photoshop immediately crashes with this super-long description of bug: http://justpaste.it/ccshapecrash
    Dunno why but this occurs very often when handling 1px-thin rectangles.
    Is it only me or has anybody else experienced this as well? Any idea what exactly is causing it or what might be wrong with my config?
    Never seen that kind of error in Photoshop before. It completely destroys my everyday workflow

    I have exactly the same problem and I don't have any solution. I was tried to update the latest video drivers - nothing! Tried to update Photoshop which updates fixes bugs - nothing! The problem continues.
    My OS is Windows 8 64bit, video card Nvidia GT 630. For the case, my Photoshop 32x works better (faster) than the 64x. Why is that ? I hope to have a solution.

  • After zooming in on an object using arrow keys to nudge, it crashes most of the time

    After zooming in on an object, using arrow keys to nudge, it crashes most of the time.
    Versions:
    Illustrator CS6, latest update
    Mac OS X 10.9.4
    FontAgent Pro 6.2
    Troubleshooting I've tried
    -trashed all related Illus. preferences
    -updated the only plug-in being used (FontAgent Pro), to the latest
    -disabled all but absolutely necessary fonts
    -repaired both system and user permissions
    -quit all other apps, so that only Illus. running.
    -fonts verified
    Was never a problem until a couple weeks ago, so the obvious question is "what changed?".  The two things we changed in the time period that the crashing started, is we replaced a balky external drive with a new one, and started our TimeMachine backups over again. And #2, we updated to the latest CS6 versions (due to other quirky issues).
    One odd thing to point out...perhaps is "normal", but in the crash reports, it's reporting that Illustrator is 16.0.0, but "About Illustrator" shows that it's 16.2.2.
    Everything else running fine on this iMac -- no reason to suspect it's the operating system.
    Has anyone run into this bug? If so, what have you done to fix this?
    I've not seen anything like this mentioned in Adobe's update change logs or their troubleshooting info.

    -> go to View Menu -> Toolbars -> select "Navigation Toolbar"
    -> go to View Menu -> Zoom -> click "Reset"
    -> go to View Menu -> Page Style -> select "Basic Page Style"
    -> go Tools Menu -> Clear Recent History -> Time range to clear: select EVERYTHING -> click Details (small arrow) button -> place Checkmarks on ALL Options -> click "Clear Now"
    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE any Unwanted/Suspicious Extension (add-ons) -> Restart Firefox
    You can enable the Trustworthy Add-ons later. Check and tell if its working.

  • Adobe Creative Suite CS5 is acting up. In Illustrator i was unable to move objects with my mouse, so

    Adobe Creative Suite CS5 is acting up. In Illustrator i was unable to move objects with my mouse and tried solving the problem in different ways - it still didnt work. So i opened up photoshop. I was unable to open a file in photoshop (new or old) and when i finally did manage to open something, I am unable to do many things.
    1) i cannot crop canvas    
    2) i cannot resize canvas
    3) text dissapears after i type it
    4) brush strokes dissapear after i release mouse
    etc
    What should i do??
    Thank you!

    Nobody can help you without system info or otehr details. From your description this could be driver issues with a tablet if you use one or similar issues with a programmable custom mouse... Most definitely not an issue within the programs. Unplug your mouse and tablet, uninstall and reinstall the drivers, try another input device...
    Mylenium

  • Itunes 10.6 crashing when accessing movies tab in itunes library

    itunes 10.6 crashing when accessing movies tab in itunes library
    Unable to access any movie in the library.

    upgrading to itunes 10.6 is crashing computers better to leave it until this bug can be fixed.
    Quick time is not the issue with this particular bug

  • Please a solution against crashes when opening a file with Acrobat XI pro?

    Hello,
    Am a member of Adobe Creative Cloud.
    Am also constantly having crashes when opening a file with Acrobat XI pro.
    Am running on Windows 7 Home Premium, Service Pack 1, 64 bit - RAM 20 GB -
    The crash happens systematically after the installation of the update. Within one day I uninstalled and reinstalled the program 4x! It takes of a lot of my time.... Thank you for providing a definitive solution!
    Best regards

    I've been having the same issue!  I try to open it and it crashes - says re-open, it crashes...  I re-installed it yesterday and it opened and worked fine.  Closed it out at the end of the day thinking everything was finally fine but this morning the same crashes it had yesterday...  HELP!!!

  • How to make a first-person style game with arrow key movement?

    Hey guys, I've made some simple click-to-move 1st person games with AS3, but I just wanted to know if there was a way to move around in 1st person with arrow keys, I was thinking you could get the background to move with the arrow keys, but that would be a little confusing.
    If you guys have any suggestions for me, or if it's possible, please reply! Thanks

    Here is a basic switch usage to move something with the keyboard:
    stage.addEventListener(KeyboardEvent.KEY_DOWN, move_mc);
    function move_mc(event:KeyboardEvent):void {
        switch(event.keyCode)
           case  Keyboard.LEFT : mc.x -= 5
           break;
           case  Keyboard.RIGHT : mc.x += 5
           break;
           case Keyboard.UP : mc.y -= 5
           break;
           case Keyboard.DOWN : mc.y += 5
           break;

Maybe you are looking for

  • Error while uploading report in Microsoft Dynamics CRM Online

    I have created a report using fetch-xml query for Microsoft Dynamics CRM Online. In this field, I have created a custom enity which has "Last Accessed Date Time" field of type "DateTime". This field stores the value in GTM. I am retrieving the value

  • Line on the left; Patterns in objects; Boxes round text

    I produce teaching materials which have to be printed in grayscale, so I need lots of ways of distinguishing items (different kinds of headings, lists, boxes, etc) without using colour. A few features seem to be missing in this regard, but pls tell m

  • OS X, Load .dylib form applet, works in Chrome but not in Safari

    In safari I get this error: java.lang.UnsatisfiedLinkError: /Library/Application Support/XXXXX/libXXXX.dylib: dlopen(/Library/Application Support/XXXXX/libXXXX.dylib, 1): no suitable image found.  Did find:   /Library/Application Support/XXXXX/libXXX

  • Buying the right replacement power adapter for HP Envy

    The original power adapter for my brother's HP Envy Touchsmart laptop has appears to have partially melted. I'm trying to find the correct adapter to use as a replacement, but I have questions because it looks like he will have to order one of the Sm

  • Can't download album

    Yesterday I sent a support email because whenever I tried to download Curtain Call- the Hits, i got an error message. (it was called error message #5002) I tried download both the preordered version, and after a while of repeatingly getting the same