Numbers hangs / does not respond with Lion OS 10.7

I have the latest version of Numbers but it does not work with Lion OS X: Numbers hangs / stop responding on opening existing files or creating new files. When I run Numbers "Template chooser" appears, I chose an existing file, then the program reports "Progress... Opening..." and hangs. Your help will be greatly appreciated!

Thanks
(1) If you are annoyed by the alternate account you may remove it but it may be useful if you have other questions about an odd behavior.
(2) Now, it's clear that the problem is in the main set of files, those shared by every accounts.
I'm not really at ease because I'm not sure of the way apps bought thru the MAS are installed on the HD.
I will ask you to apply two tasks :
(a) run the application "FontBook" (from Applications) and ask it to scan the system in search of corrupted fonts as well as duplicate ones.
(b) Go to : http://www.titanium.free.fr/
and download the free Onyx dedicated to Lion (I know, it's a beta version)
Run it to :
check/repair permissions
clean most of the caches used on the machine.
With a bit of luck, you will get a normal behavior.
May you also, for my own information, tell me :
(I) if there is such a folder (Frameworks) on your machine :
On yours, I guess that "Bibliothèque" is spelled "Library"
(II) if Numbers is stored in the folder "Applications" or in a folder "Applications:iWork '09"
Yvan KOENIG (VALLAURIS, France) lundi 25 juillet 2011 16:41:26
iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
Please : Search for questions similar to your own before submitting them to the community
To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

Similar Messages

  • External Hard Drive does not work with Lion

    Hi
    My External Hard Drive does not work with Lion this message appears:
    NTFS-3G could not mount /dev/disk1s1
    at /Volumes/My Passport because the following problem occurred:
    /Library/Filesystems/fusefs.fs/Support/fusefs.kext failed to load - (libkern/kext) link error; check the system/kernel logs for errors or try kextutil(8).
    the MacFUSE file system is not available (71)
    can anyone help?

    Hi,
    See this Discussion:
    https://discussions.apple.com/thread/3191198?start=0&tstart=0
    Cheers,

  • Why does Corel Suite 10 does not work with Lion OS?

    Why does Corel Suite 10 does not work with Lion OS?

    Either it's incompatible or it's a PPC-only application. PPC applications are no longer supported in Lion because there is no longer a Rosetta emulator. Contact Corel for support.

  • How can I go back to snow leopard my epson stylus Photo TX810FW does not work with Lion

    My Epson Stylus Photo TX810FW printer does not work with Lion how do I go back to Snow Leopard?

    Did you try removing the printer from the queue and then reinstalling it?
    I attempted to print this morning for the first time after upgrading to Lion and discovered that while everything appeared normal on my Epson printer, it would never print.
    I opened System Preference > Print & Scan and deleted the printer.
    I then added the printer back and it now working again. Worth a shoot first I should think.
    Much easier the a downgrade.
    Allan

  • My cannon printer worked with snow leopard but does not work with Lion

    My Mf 4350d printer does not work with lion Mac OS X Lion 10.7.2., it worked with Snow leopard no problem. I am a novice with apple so can you tell me how to do any changes carefully.

    Have you downloaded and installed the latest Canon printer drivers?
    http://support.apple.com/kb/DL899

  • TS3186 My docking station wont play my ipod..... the ipod works fine on its own but when I try to play via my hifi I have to put the sound full wack to be able to hear it & its not very lound at all. It does not respond with the remote control either!! Th

    My docking station wont play my ipod..... the ipod works fine on its own but when I try to play via my hifi I have to put the sound full wack to be able to hear it & its not very lound at all. It does not respond with the remote control either!! The sound is ok if I play CDs & respond to remote control fine... The hifi & docking station are Sony

    1) When I go to the apple.com website my computer will either be really slow or freeze my whole system down to where I have to reboot my computer again. This does not happen all the time but when it does operate it is molasses slow.
    By any chance, are you uswing Kaspersky security software?
    If so, see:
    [With Kaspersky Internet Security 2011 installed on my computer the website apple.com is imaged incorrectly. What should I do?|http://www.kaspersky.com/support/kis2011/all?page=14&qid=208282422]

  • Button does not respond (with attachment)

    Hi,
    I'm trying to develop a LV program for a psychology experiment to record a participants mouse movements whilst drawing or tracing a picture using the mouse.
    My program uses an event structure to generate an event each time the mouse is moved or the mouse button is pressed or released. Upon each of these events the coordinates and button position is recorded to an array.
    When they have finished drawing there is a button "Stop & Save" that allows the user to save the coordinate data to a file. This can then be opened by a sister program I'm developing that allows the movements to be replayed and shows where the mouse button was down and up.
    At the start of the program there is the option of loading a background jpeg picture to trace over on the screen.
    The program then waits for a 'Record' button to be pressed before moving on to record all coordinates there after until the 'Stop & Save' button is pressed.
    The problem I have is that the record button does not respond. It doesn't even change state when pressed, even though at that stage it's just sat in a while loop waiting for it to be pressed before moving on to the event structure.
    I attach the program for you to look at.
    Any help/hints much appreciated.
    Thanks,
    Dave.
    Attachments:
    MouseCoordinatesForPW.vi ‏178 KB

    altenbach wrote:
    Your overall program design is higly flawed. This calls for a single state machine with an event structure that handles all FP events. All your locals can be handled by shift regsters. Get rid of that useless stacked sequence!
    Frame 0: Initialization belongs to the left of the state machine. CoordinatesArray should initialize a shift register (no locals needed). Use a boolean shift register to set state to either recording or not. Event for "record, value changed" will switch the boolean to be used on the other states.
    Frame 1: "Clear" and "stop" need to be inside their own events. Running it parallel to the event structure is a no-no! Do you really want to record mouse movements on the entire FP or only on the picture area?
    Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes no sense.
    Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values.
    Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead.
    Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help.
    Message Edited by altenbach on 05-22-2007 09:23 AM
    Hi, thanks for your reply.
    The reason for the main stacked sequence was to get some order to the program, my programming background's text based and as such I like to think of a program running in a list/sequence order. LabView seems strange when you've been used to programming in asm or C. Does anyone know of any books or online documentation for people migrating from text languages to LV? - I haven't found any.
    "Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes sense."
    - The string 'CoordsArray' is cleared to make sure it's empty before chars concatanated to it in the next frame. Call me old fashioned but is it not good practice to clear out any junk in a variable rather than just assuming it's empty?
    "Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values." - not sure what you mean by that?
    "Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead."
    - No, it's not an empty string since in the previous frame the coordinates array is converted to numbers and concatanated to it. Trust me, it generates a file with lots of data in so no way is it an empty string!!
    - Yes, you could just swap the cases instead of inverting the 'canceled' output but sometimes it reads better to say 'if NOT cancelled then DO theTask, ELSE DO nothing' rather than 'if cancelled DO nothing ELSE DO theTask'. Not sure if that makes sense but I guess it's just personal prefference there.
    "Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help."
    - I wasn't sure how that one would work. I wanted the final exe version to close the program window when the program comes to the end, what's the best way to do that? In the past I think I used the 'Exit' function but this would annoyingly quit LabView at the end of each trial run whilst still in the development stage.
    Thanks,
    Dave.

  • My belkin play max router software does not work with Lion

    Does anyone know if there will be a fix with this?  My imac is only 2 months old and my router is the same age.  Since upgrading to lion I have frequent dropouts and no working self-healing program.  I have changed channels with some succes but it's much less reliable than pre
    Thanks

    Here's their  reply, so the software is not compatible with Lion and no fixes in vew:
    Dear customer,
    Thank you for contacting Belkin Technical Support.
    I understand your concern and I would certainly be happy to help you.
    I regret the Inconvenience caused,
    Based on the Information provided, I am afraid to state that the Belkin software doesn't support MAC OS X Lion 10.7. As there are no drivers for it. We are aware of this issue. Our Engineers are working on it. We do not have any update about the new release for MAC OS X Lion 10.7. However, will keep you updated if there's any.
    Should you have any further questions, please take a moment to review our Knowledge Base at http://belkin.com/support
    Please ensure that in order to reply to this email, or access any attachments, you must follow the link shown above and click 'update' at the bottom of the email to be able to respond. Do not reply to [email protected] as we will not receive your email.
    Thank you,
    Mousin M D
    Technical Support Agent
    Belkin Technical Support.

  • Iphoto does not respond with batch change

    Recently, when I do a batch change for example "descriptions" iphoto does not respond.  I tried to see if it was the number of pictures that I was batch changing but it freezes even with one photo.  I tried rebuilding thumbnails.  Any ideas?

    Make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    OT

  • VMware Fusion 2 does not work with lion

    I need the VMware Fusion to run my dictonary on the Mac. I have up to now Fusion2 and this does not work with the lion.

    jbjoret wrote:
    VMWare and Parallels hook themselves deep with the OS and are not standard applications.
    Parallels broke in the 10.6.8 update, caused a lot of headaches around here.
    I don't think they follow Apple's rules too well.
    Fusion might be a bit less feature rich, but it seems they are more complaint. Also Apple sells Fusion and likely uses it themselves.
    Both are excellent of course.

  • Keynot does not work with Lion OSX 10.7.2

    First there was the problem with the hidden Library/application Support/iWeb/domaines, which is an important problem for me as I use my web site to show people what kind of work that I do (videos with still photography); now there's the problem with Keynote, which does not even open with Lion OSX 10.7.2. Up until now, I was using Keynote to do my video projections in small town halls. I use Protools for the sound and Final Cut (that's another problem!) for the photos and then do a Quick Time session which I put in Keynote. It was working just fine - until Lion came along.
    It seems to be well known that Apple is going to discontinue iWeb (let's not talk about what they did to Final Cut) - and now it looks like they've got plans for Keynote as well. It looks like the solution is either to use PowerPoint rather than Keynote, or to downgrade back to Snow Leopard. I'm tempted to change to PowerPoint just to keep in the race, but where is Apple taking us? I'm not sure that what Apple want's us to do is really good for us! But is it realistic to hang on to Snow Leopard? Are the PCs better or are they doing the same thing? It almost seems as if there were commercial agreements between those who run everything...but that's another story - or is it?
    Théo

    Yes, it should work with Lion.  It does for lots of folks.
    Are you getting an error message of some sort?  If so, see #C2 in Time Machine - Troubleshooting.
    If that doesn't help, try re-selecting it, via Time Machine preferences.
    Or try a "full reset" of Time Machine, per #A4 in the Troubleshooting article.
    Or reset the TC itself, per http://support.apple.com/kb/ht3728

  • Acrobat 7.0 does not work with lion

    Why does my Acrobat profeesional 7.0 not work anymore. just installed Lion os.  Can this be fixed? Do I have to buy another version?

    Acrobat X Pro is the only version Adobe states works with Lion. You'll have to upgrade.

  • My macbook pro 2.33 17 inch takes 9 minutes to start and does not start with lion

    my macbook pro 2.33 17 inch takes 9 minutes to start on Snow Leopard  and does not go beyond the apple log start up with lion.
    When I am using Snow Leopard after it has finished the starting process; everything works well..it is just the 9.10 minutes it takes to
    boot that I don't understand + I want to upgrade to lion, but it get stock in the apple logo and the little while just keeps on spinning eternally.
    I feel I am in purgatory...:-)
    Please help ...any suggestion will be appreciated;
    Thanks.

    See if this is of any assistance:
    http://support.apple.com/kb/TS2570
    Ciao.

  • Have macbook 13 inch, full trackpad yet gestures does not work with Lion

    Installed Lion, tried to use gestures but does not work, have macbook with full trackpad without bottoms, went to System Preferences, Trackpads, checked for all features, is there anything else I need to do?

    Check some features change others,and if you check someones doesn't work,check it and be sure you no asking do different things with the same gesture,happen to me too so i take the time to check uncheck what i check..

  • Time capsule now does not work with Lion just installed.

    Just downloaded Lion to Mac Air. Time capsule now does not work. Where is the problem?

    Restart the TC.. lion is stupid.. it forgets what it is connected to with alarming frequency ... like someone suffering dementia.
    If it continues to have issues, plug the TC directly to the lion computer by ethernet (if not already) and try again. Change the wireless to manual in airport utility and change the wireless name.. to force a new configuration. Once setup you can just use wireless.
    In the end you may need to reset the TC.. just hold in the reset button for about 10sec. It should then become available.. a reset does not do anything to data on the hard drive but you might need to restore any passwords.

Maybe you are looking for

  • Please help me fix this problem!

    I am having trouble getting games to load. I keep getting an error message telling me i need to install flash player. and i have tried doing that, i have even tried uninstalling it and re installing it again, but nothing seems to work and i keep gett

  • Aperture/iPhoto issue

    some of my images in Aperture/iPhoto are appearing pixelated.  any idea on how to get the issue fixed

  • JDK - Time configuration for France

    Hi! I'm using GregorianCalendar class to get current date and time like above: GregorianCalendar today = new GregorianCalendar(); I'm located in Paris and the time I get is automatically converted to Greenwich Mean Time (so one hour less than the one

  • Adobe Interactive Form with WDA Video not opening

    The eclass in the page below does not open. http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3 It keeps giving the 'Loading Page . Please wait' message . Any plug-ins are needed. Trying to view this

  • Get LNK2005 error when use cvi.lib in windows application VC++

    The typical error is: libcmtd.lib(fflush.obj):error LNK2005 _fflush already defined in cvi.lib(cvirte.dll) The errors do not occur in a console application.