Numbers 08 Zoom Problem

I did a clean install of Mountain Lion and then reinstalled iWork 08. All the programs are functioning normally except numbers. The zoom settings are now set as: 2500%, 5000%, 7500%, 10000% etc... rather than 25%, 50%... The zoom setting in the prefernce pane shows the correct setting (ie 25%, 50%) but  on the the worksheet everything remains unchanged at 2500% etc. Any suggestions?

Just in case I didn't explain myself clearly here are two screen shots of the problem:
The Default Zoom in the preferences pane:
and what shows up on the spreadsheet:

Similar Messages

  • Because I have taken over 9,999  pics, my phone is now duplicating image numbers. The problem is when I am importing with Image Capture, when I select images, the program is importing BOTH the old images of the same number as well as the new ones. Help?

    Because I have taken over 9,999 images, my phone is now duplicating image numbers. The problem is that Image Capture now imports BOTH images when I select the new ones that share numbers with old ones.  The images were completely mixed when they showed up in Image Capture - Old image 0001, new image 0001, old image 0002, new image 0002 and so forth. I clicked on "date," which then rearraged the images, and I selected only the new ones, but when they actually import to my computer BOTH old and new images are importing. Has anyone figured out how to solve this problem?

    Well, obviously all I needed to do  to solve the problem was to post about it. It has stopped, so all is well!

  • Zoom problem (help needed urgently)

    friends,
    i m working on a class in which there is one JPanel inside a JInternalFrame. i have functionalities like zoomin and zoomout. for that i m writing my code on mouse clicked of JPanel but my problem is that mouseClicked method is getting called several times even if i click once on JPanel and thus zooming the JPanel by a very large value.
    please help me if u have any solution for it.Its very urgent.

    it would be difficult to post complete code so i m posting the important part of my code related to this zoom problem.
    public class PaintPanel extends JPanel implements MouseListener
         public Rectangle normalShape;
         public int initialX =0;
         public int initialY = 0;
         public int finalX = 0;
         public int finalY = 0;
         protected void paintComponent(Graphics g)
    addMouseListener(this);
    super.paintComponent(g);
    scale = zoomvalue;
    // System.out.println("scale value is " + scale);
    Graphics2D g2d = (Graphics2D) g;
    AffineTransform at = g2d.getTransform();
    AffineTransform atnew = new AffineTransform();
    atnew.scale(scale,scale);
    at.concatenate(atnew);
    // g2d.setTransform(at);
    g2d.setTransform(at);
    public void mouseClicked(MouseEvent e)
    // get the position of mouse released
    setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
    finalX = e.getX();
    finalY = e.getY();
    temploc3 = finalX;
    temploc4 = finalY;
    if(WellPlot.zoomFlag)
    System.out.println("zoomvalue in mouseClicked " + zoomvalue);
    zoomvalue += 0.1 ;
    setZoom();
    return;
    }

  • Zoom problems with G30

    When I zoom out with the rocker switch on my G30, the zoom will return to a wide angle, especially if I lightly touch the telephoto end of the rocker. It will continue to return to wide angle by itself, even if I move the rocker switch to telephoto. This seems to occur when the weather is hot (we shoot outside much of the time) and the camera has been operating for an extended period. This zoom problem does not seem to happen if the touch screen and remote zoom are used and the camera is cool. I bought this camera 9/2013. Has anyone else experienced this issue? Could this be a defective zoom switch? Would updated firmware make any difference? Any help would be appreciated.

    Hi mimages!
    Thank you for posting.
    Based on your description, the camcorder will need to be examined by a technician at our Factory Service Center.  To start this process, you'll need to complete a Repair Request on our website.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Is there any way to help aid this annoying wallpaper zoom problem?

    So with the addition of iOS 7 came a new feature; parallax, adding a 3D effect to the home and lock screens. This is all fine and dandy, but 1. I don't like the feature because it wastes battery to use the gyroscope to just make the wallpaper move a bit, 2. The parallax doesn't even look 3D, and 3. Which is my main problem, it messes with the scale and zoom of when I am trying to set a wallpaper.
    So pretty much what I am asking, is there any way to make more of a wallpaper show when I set it? Even with "Perspective Zoom" turned off, most of the edges of the picture are cut out  and the "Fix" introduced with 7.1 doesn't seem to fix anything relating to the annoying zoom problems, other than giving people the option to not have their wallpaper move, but still have animations-and oh that brings up something else-
    Turning off "Perspective Zoom" turns off the wallpaper moving, but not the app icons moving. If you look closely, the apps move too, in the opposite direction of the wallpaper, to help give more of a parallax effect. The movement is a lot more subtle, but still definitely there.

    I never had any problem installing wallpaper. Knowing the photo is going to enlarge start with a photo smaller then full screen. If the photo is too small when you try to install it you can enlarge it by putting two fingers on the screen and moving your fingers apart.

  • XY graph zoom problem

    Hello,
    There is a issue when you zoom in using a XY graph. Say you have a two points one at 0,0 and another at 10000,10. If you zoom in to say point 5000,5 the centre point the line will be way off nowhere near where it should be crossing. I was wondering if anyone knows a fix for this problem?
    Thanks

    I agree that this does not look right, but is probably due to limitations in the math used. Once you zoom into the area of iterest, the position of the line actually changes as a function of zoom level. (for example, the 5000 crossing of the line is at 5.00, then at 5.015, then at 5.16). I am sure the accuracy it could be improved, but maybe at a cost of performance.
    It should definitely be investigated.
    LabVIEW Champion . Do more with less code and in less time .

  • Numbers In Lion Problem

    Just upgraded to Lion. Two problems have begun. 1) When I open a Numbers file, an earlier, unrelated, file also opens. This is annoying. How do I stop that action? 2) I tried to "Save As" a file with a new name in a different location, but no longer seem to be able to do that. Any suggestions?
    Thanks,
    Arnie

    (1) Let us time to discover the true behavior of the beast.
    In fact, when you create a document from a template, press immediately cmd + S and you will get the well known Save As… dialog.
    (2) The files which open when you re-open the app are those which were open when you closed it.
    Close the files before leaving the app, they will not open at next launch.
    Run this script to disable the save_application_state feature :
    --{code}
    set Saved_Application_State to (path to library folder from user domain as text) & "Saved Application State:"
    set maybe to choose folder with prompt "Choose the folder linked to the application which you want to 'lock'" default location (Saved_Application_State as alias) without invisible
    tell application "System Events"
              every disk item of folder (maybe as text)
    end tell
    tell application "Finder"
              set locked of maybe to true
    end tell
    --{code}
    You will be asked to select a folder in such a list :
    com.apple.finder.savedState
    com.apple.installer.savedState
    com.apple.mail.savedState
    com.apple.Safari.savedState
    com.apple.Pages.Numbers.savedState
    com.apple.Pages.Pages.savedState
    com.apple.ScriptEditor2.savedState
    com.apple.systempreferences.savedState
    net.nightproductions.prefSetter.savedState
    I guess that you will identify the correct one.
    The, the script will empty this folder and lock it.
    The application state will no longer be saved (until you unlock the folder)
    I will post later a script allowing all of us to disable /enable the feature.
    Yvan KOENIG (VALLAURIS, France) lundi 25 juillet 2011 16:25:44
    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 !

  • Gallery zoom problem N8 since PR1.1

    I wondered if anyone else has had this....
    since 'upgrading' to PR1.1 intermittently, but often the gallery does not zoom correctly.
    when i zoom previoulsy it would zoom in the current image in low quality then a couple of seconds later it would paint in the detail....
    this painting the detail stage often does not happen and i have to reboot, which often doesn't fix it and i have to reboot again.
    sometimes after a reboot, when i open the gallery it will say 'refreshing your media' - anyone else have this - or an idea for a better workaround... how about deleteing all the _PAlbTN directories? where is the gallery database?
    There's no dignity in begging for kudos. Do it for the karma.

    there could well be a third element to this...
    it could be updating to pr1.1 after you have installed bubbles. nokia battery monitor has been giving me hassle too.
    but my googling lead me to a bug report on beta labs, it had no other supporters, but uninstalling bubbles removed the problem immediately. not even a reboot required.
    bubbles installs all kind of beta versions of all sorts of libraries that are used by all sorts of phone apps. it's a bit cheeky really whilst i understand that a beta is exactly that. this app does appear to have the potential to mess up everything rather than just itself. check this out for a 'known issue' - Installing Bubbles will also install a beta version of Qt 4.7.1 which may cause the Ovi Store client or other Qt-based applications to fail.
    There's no dignity in begging for kudos. Do it for the karma.

  • Zoom problem

    Hi guys,
    I'm a new user here, but I've been using Photoshop for many years.  I'm currently using Photoshop CS5 version 12.0.4.
    I recently updated my video driver, and now I'm having a problem with my zoom tool.  I'm going to try as best I can to describe it accurately here, and hopefully someone can tell me if there's a way to fix it.
    Basically, I used to be able to select the zoom tool, then click and drag to draw a "box" around whatever I want to zoom in on.  This is the behaviour I want.
    Right now, however, if I select the zoom tool, the behaviour is that instead of getting the "box," it just zooms as I'm dragging.  That is, I click, hold down my button, and when I drag to draw the box, I instead end up zooming in (or out, if I drag the other way) of my image, until I let go of holding down the button.
    Has anyone seen this before?  Does anyone know why this is happening?  Or, more importantly, how I can fix it?  It's driving me nuts!
    Thanks in advance,
    Kevin.

    Aha!  I think I may have found it.  There's a checkbox called "scrubby zoom" that seems to control this behaviour.  I have no idea why this ever would have become checked, but un-checking it seems to restore the zoom tool behaviour to what I was expecting.
    Hope this question helps someone else,
    Kevin.

  • HTML Map tag zoom problem.

    Hi,
    We have discovered a problem with our webpage that only occurs on safari. We have an image with an image where we use an <map><area> tags to indicate click-able hot spots on the image. When you change the zoom level in the browser, increasing or decreasing the size of the image the relative location of the hot spot changes within the image.
    This problem happens in both windows and mac versions of safari. IE, Chrome and FireFox handle this correctly.
    Does anybody know how to fix this?

    Hi
    a webkit nightly from http://webkit.org will likely fix it on an individual machine - but afaik, apple didn't include the fix in the recent safari updates.

  • Display mysteriously changed... not a zoom problem.

    I opened up my computer and the font and display had changed.  Now things like webpages don't fit in the screen.  Even the desktop picture has changed.   It isn't zoom and I've checked the display resolutions.   Anyone know how to correct this problem?

    Did you try holding down CNTL while you scroll down with the mouse or trackpad.
    This can zoom the screen even when the System Preferences > Universal Access shows zoom off.
    Regards,
    Captfred

  • Find/Replacing numbers in document problem

    I have a large document that I need to replace the numbers from 1-10 with letters.
    The problem with doing an automatic replace is that it will affect numerals like 1.5 and numbers 11 and over. Is there any way to get around this or am i doomed to go through the entire document?

    First: if I am not mistaken you will need to do a replace for every single number, i.e. you need ten passes. Get yourself acquainted with the "FindChangeByList" script in your script-panel.
    To rephrase: you want to replace any digit that is neither preceded nor followed by either another digit or a dot. Correct?
    Then you can grep for this: (?<![\d.])1(?![\d.]) and change to a

  • Robohelp 9 numbered HTML lists problem

    I'm having problems with HTML lists in Robohelp 9 that are converted from linked Framemaker 10 xml files. The list numbering restarts from zero after the 9th item and I can't find anywhere that could be configured!
    The configuration for the conversion in the Robohelp 'Conversion settings' for the relevant numbered list paragraph in Framemaker is 'Convert autonumber to HTML list'.
    Many thanks in advance for any pointers.
    Regards,
    Nick

    Are you sure it actually restarts from zero? Have you checked the HTML code? My initial thought after reading this was that you might have some issues with CSS margins and alignments hiding the number in front of your zero. Numbers that should be 10, 11 etc. but shows up as 0,1, 2,3 etc.. Anyways, I would post an image that visualizes your output from RH.
    Edit: Have you tested a larger list (20+) to see if things are repeated?

  • Multi Y-scale zoom problem

    I created two Y-scales on my XY Graph and attached one plot to each scale. The problem is that when i am trying to zoom the graph it changes both scales. I tried to set Active Scale before zooming but that didn' help.
    Is it possible to zoom scales independently using Tools from Graph Palette?

    Hi Jonni,
    I have attached an example in LabVIEW 8, you can change your Y-Axis range to zoom in on individual plots.
    Regards
    JamesC
    NIUK and Ireland
    Attachments:
    Use Axis range as zoom.vi ‏15 KB

  • Numbers Shut Down Problem

    Hi,
    I am trying to use Numbers at my Mac Book Pro. Since yesterday I am receiving a shutdown problem of Numbers. While working the screen is freezing and than shutdown. Even if I open the file while entering a cell or trying to open a new sheet the Numbers program is shutting down directly.
    Please help.
    Armagan Basar

    Armagan,
    Sometimes these things can be cleared up by closing all your documents, quitting all your apps and Restarting your computer.
    When you Launch Numbers again, hold down the Shift key so that Numbers doesn't try to open any previously open documents until you want it to. That way you will be better able to find what is causing the problem.
    Jerry

Maybe you are looking for

  • Add rows to a tabular form (v1.6)

    I have 2 tabular forms on a single page (It started as a master and detail with detail). The second add button which is adding empty rows at the end of the report region keeps adding the empty rows to the first tabular report. I don't see a setting t

  • During charge LED indicator does not switch correctly to amber (orange)

    Symptom: Battery charging and everything works fine, but during charge the color does not change to amber or better to say the change is nearly not detectable anymore. The green light only changes being a bit more yellowish. The charging can only be

  • DVT: Graph - Issues with Automatic Sizing Inside PanelDashboard

    Hello. To start off, here is the background information: JDeveloper Version: Studio Edition Version 11.1.2.2.0, Build JDEVADF_11.1.2.2.0_GENERIC_120418.2212.6183.1 WebLogic Version: JDeveloper built-in version Error messages received: None We have de

  • How do you fix a Snowball iMac freezing up?

    How do you fix a Snowball iMac freezing up? When booting up I get the white screen with the spinning blue disk and it won't move past that.

  • My IDOC segment change should reflect ONLY for 1 extension

    Hello I have added a additiona/new field to a custom segment. And this segment is used in 2 IDOC extensions, say Z_ORD_1 and Z_ORD_2. But, we are interested only in Z_ORD_1 extension. So, some how can i restrict that my additional field should point