I am having a problem saving my document in Numbers

I can't save a document that I copied and I think I lost it.

Search on "Digital out" in these forums and you will see a number of people encountering this issue. Have a look. The common fix involves sticking a toothpick in the output jack. Really.
charlie

Similar Messages

  • Having a problem saving word documents...any ideas?

    I'm hoping someone can help me out with this..
    Lately when I've been writing a word document a message will pop up from the Auto Recovery Save. It says, "Word cannot save or create this file. The disk may be full or write-protected. Try one of more of the following: free more memory, make sure that the disk you want to save the file on is not full, write-protected, or damaged."
    I'm using Word 2004 (version 11.3.5) on Mac OS X 10.4.11
    I've tried deleting some word files to free up some space but I'm still getting this message. I haven't had any other problems using my macbook. I write a lot of word documents (I'm a student) but this is the first time I've ever had this message pop up.
    Any ideas what the problem is or what I can do to fix it?
    Thanks!
    Stacy

    How much free space is on your hard drive?
    Have you emptied the trash?
    Disk space is not 'freed' for re-use by deleting files until the trash is emptied.
    Have you tried using Disk Utility to check the disk for errors and to verify/repair disk permissions?
    Have you tried saving your documents to a flash drive plugged into the USB port?
    An empty 4Gb or 8Gb Flash drive has plenty of space to store lots of documents as an inexpensive and a temporary solution if you're almost out of hard disk space.
    Even with a flash drive, you might get the same error message, because the temporary files are probably defaulting to being stored on your hard disk. There's likely a place somewhere in Word preferences to view and change where the temporary files are stored. (Sorry, I haven't used OS X 10.4 or Word 2004 in about 4 years, and I don't have either one immediately available to check.)
    It's also possible that your hard drive is beginning to fail. If Disk Utility cannot verify the hard disk, I would recommend making a backup of important files immediately to CD or DVD. (I use Time Machine, but that didn't become available until OS X 10.5)

  • I'm having a problem saving a pages document as another format, like a Word document or PDF file.  I've never had this problem in the past.  Please help me!  I need to have this fixed a.s.a.p.

    Hello everyone,
    I'm currently having a problem saving a Pages document as another format, such as a Word document or PDF file.  I've never had this problem before with Pages.  Please help me!  I need to have this completed a.s.a.p.
    Thanks,
    Amy

    To save as a PDF, you do that from Print
    To save as Wrod format, you export
    Allan

  • I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working"

    I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working" then I get Windows is looking on line for a solution, but then my document closes. I tried uninstalling and reinstalling Adobe Reader XI, rebooted my computer but this did not help.  I get the same message. What to do?

    Can you open Reader by itself?  If so, check if disabling Protected Mode improves the situation [Edit | Preferences | Security (Enhanced)].

  • Having a problem saving the graphics on a canvas.

    I'm having a problem saving graphics on a canvas. It draws on the canvas but when another window comes up the graphics disappear. I put in a method to take the graphics on the canvas and repaint it with the graphics. But this comes up blank. So I don't know why this is happening. It is probably the paint method but I don't know why. If anyone has any ideas could you please respond because I have had this problem for ages now and it's driving me mad and I have to get this finished or I'm going to be a lot of trouble. I'll show you the code for the class I am concerned with. It is long but most of it can be disregarded. The only parts which are relevent are the paint method and where the drawline e.t.c are called which is in the mouse release
    package com.project.CSSE4;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.ImageFilter;
    import java.awt.image.CropImageFilter;
    import java.awt.image.FilteredImageSource;
    import java.io.*;
    import java.util.*;
    import java.net.*;
    import javax.swing.*;
    import java.sql.*;
    public class CanvasOnly extends JPanel
           implements MouseListener, MouseMotionListener
       public static final int line = 1;
       public static final int freehand = 2;
       public static final int text = 3;
       public static final int mode_paint = 0;
       public static final int mode_xor = 1;
       public Color drawColor;
       public int drawThickness = 1;
       public int drawType = 0;
       public boolean fill = false;
       private boolean dragging = false;
       public int oldx = 0;
       public int oldy = 0;
       private int rectangleWidth;
       private int rectangleHeight;
       private tempLine draftLine;
       private tempText draftText;
       public Canvas pad;
       public static final Font defaultFont =
         new Font("Helvetica", Font.BOLD, 14);
       protected boolean floatingText = false;
       boolean showingPicture;
       protected Image offScreen;
       public JTextArea coor;
       public JButton writeIn;
       Connection connection;
       String codeLine;
       int x = 0;
       int y = 0;
       public CanvasOnly()
           try
                Class.forName("com.mysql.jdbc.Driver").newInstance();
           }catch( Exception e)
                 System.err.println("Unable to find and load driver");
                 System.exit(1);
            pad = new Canvas();
            pad.setBackground(Color.white);
            pad.setVisible(true);
            pad.setSize(400, 400);
           coor = new JTextArea(15, 15);
           writeIn = new JButton("load TExt");
           writeIn.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent event1)
                     try
                   Statement statement = connection.createStatement();
                   ResultSet rs = statement.executeQuery("SELECT * FROM submit WHERE file_name = 'cmd.java'");
                   rs.next();
                   String one1 = rs.getString("student_id");
                   //System.out.println("one1 :" + one1);
                   String two1 = rs.getString("file_name");
                   //System.out.println("two1 : " + two1);
                    InputStream textStream = rs.getAsciiStream("file");
                    BufferedReader textReader = new BufferedReader(
                                     new InputStreamReader(textStream));
                    codeLine = textReader.readLine();
                    x = 0;
                    y = -12;
                    while(codeLine != null)
                        y = y + 12;
                        //fileText.append( line + "\n");
                        //canvasPad.drawTheString(line, x, y);
                        drawText(Color.black, x, y, codeLine, mode_paint);
                        codeLine = textReader.readLine();
                     textReader.close();
                    pad.setSize(400, y);
                    Timestamp three1 = rs.getTimestamp("ts");
                    //System.out.println(three1);
                    textReader.close();
                    rs.close();
              }catch (SQLException e)
                System.err.println(e);
              catch(IOException ioX)
                System.err.println(ioX);
            //setSize(300,300);
            drawColor = Color.black;
            pad.addMouseListener(this);
         pad.addMouseMotionListener(this);
         offScreen = null;
       public Image getContents()
         // Returns the contents of the canvas as an Image.  Only returns
         // the portion which is actually showing on the screen
         // If the thing showing on the canvas is a picture, just send back
         // the picture
         if (showingPicture)
             return (offScreen);
         ImageFilter filter =
             new CropImageFilter(0, 0, getWidth(), getHeight());
         Image newImage =
             createImage(new FilteredImageSource(offScreen.getSource(),
                                  filter));
         return(newImage);
        public void setImage(Image theImage)
         // Fit it to the canvas
         offScreen = theImage;
         repaint();
         showingPicture = true;
        synchronized public void paint(Graphics g)
         int width = 0;
         int height = 0;
         //The images are stored on an off screen buffer.
            //offScreen is the image declared at top
         if (offScreen != null)
                  //intislise the widt and heigth depending on if showingpicture is true
              if (!showingPicture)
                       width = offScreen.getWidth(this);
                       height = offScreen.getHeight(this);
                   //width = getWidth(this);
                   //height = getHeight(this);  //offScreen
              else
                   //width = pad.getSize().width;
                   //height = getSize().height;
                   width = pad.getWidth();
                   //width = getSize().width;
                   height = pad.getHeight();
                   //height = getSize().height;
                    //Draws as much of the specified image as has already
                    //been scaled to fit inside the specified rectangle
                    //The "this" is An asynchronous update interface for receiving
                    //notifications about Image information as the Image is constructed
    //This is causing problems
              g.drawImage(offScreen, 0, 0, width, height, pad);
              g.dispose();
         //clear the canvas with this method
        synchronized public void clear()
         // The maximum size of the usable drawing canvas, for now, will be
         // 1024x768
         offScreen = createImage(1024, 768);
         //Creates an off-screen drawable image to be used for double buffering
         pad.setBackground(Color.white);
         //Set the showingPicture to false for paint method
         showingPicture = false;
         repaint();
         synchronized public void drawLine(Color color, int startx, int starty,
                              int endx, int endy, int thickness,
                              int mode)
         int dx, dy;
         Graphics g1 = pad.getGraphics();
         Graphics g2;
         //if image is not intialised to null
         //the getGraphics is used for freehand drawing
         //Image.getGraphics() is often used for double buffering by rendering
            //into an offscreen buffer.
         if (offScreen != null)
             g2 = offScreen.getGraphics();
         else
             g2 = g1;
            //mode is put into the method and XOR is final and equal to 1
         if (mode == this.mode_xor)
                  //calls the setXOR mode for g1 and g2
                  //Sets the paint mode of this graphics context to alternate
                    //between this graphics context's current color and the
                    //new specified color.
              g1.setXORMode(Color.white);//This will
              g2.setXORMode(Color.white);
         else
                  //Sets this graphics context's current color to the
                    //specified color
              g1.setColor(color);
              g2.setColor(color);
         if (endx > startx)
             dx = (endx - startx);
         else
             dx = (startx - endx);
         if (endy > starty)
             dy = (endy - starty);
         else
             dy = (starty - endy);
         if (dx >= dy)
              starty -= (thickness / 2);
              endy -= (thickness / 2);
         else
              startx -= (thickness / 2);
              endx -= (thickness / 2);
         for (int count = 0; count < thickness; count ++)
              g1.drawLine(startx, starty, endx, endy);
              g2.drawLine(startx, starty, endx, endy);
              if (dx >= dy)
                  { starty++; endy++; }
              else
                  { startx++; endx++; }
            //Disposes of this graphics context and releases any system
            //resources that it is using.
         g1.dispose();
         g2.dispose();
         //This method is not causing trouble
         synchronized public void drawText(Color color, int x, int y,
                String text, int mode)
         Graphics g1 = pad.getGraphics();
         Graphics g2;
         if (offScreen != null)
             g2 = offScreen.getGraphics();
         else
             g2 = g1;
         if (mode == this.mode_xor)
              g1.setXORMode(Color.white);
              g2.setXORMode(Color.white);
         else
              g1.setColor(color);
              g2.setColor(color);
         g1.setFont(new Font("Times Roman", Font.PLAIN, 10));
         g2.setFont(new Font("Times Roman", Font.PLAIN, 10));
         g1.drawString(text, x, y);
         g2.drawString(text, x, y);
         g1.dispose();
         g2.dispose();
          //connect to database
      public void connectToDB()
        try
           connection = DriverManager.getConnection(
           "jdbc:mysql://localhost/submissions?user=root&password=football");
                     //may have to load in a username and password
                                                     //code "?user=spider&password=spider"
        }catch(SQLException connectException)
           System.out.println("Unable to connect to db");
           System.exit(1);
      //use this method to instatiate connectToDB method
      public void init()
           connectToDB();
        protected void floatText(String text)
         draftText = new tempText(this.drawColor,
                            this.oldx,
                            this.oldy,
                                        text);
         this.floatingText = true;
        //nothing happens when the mouse is clicked
        public void mouseClicked(MouseEvent e)
        //When the mouse cursor enters the canvas make it the two
        //straigth lines type
        public void mouseEntered(MouseEvent e)
         pad.setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));
        //When mouse exits canvas set to default type
        public void mouseExited(MouseEvent E)
         pad.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
        //used for creating the shapes and positioning thetext
        public void mousePressed(MouseEvent e)
             // Save the coordinates of the mouse being pressed
         oldx = e.getX();
         oldy = e.getY();
         // If we are doing lines, rectangles, or ovals, we will show
         // draft lines to suggest the final shape of the object
         //Draw type is a publc int which can be changed
         if (drawType == this.line)
            draftLine = new tempLine(drawColor, oldx, oldy, oldx,
                                 oldy, drawThickness);
            // Set the draw mode to XOR and draw it.
            drawLine(draftLine.color, draftLine.startx,
            draftLine.starty, draftLine.endx,
            draftLine.endy, drawThickness, this.mode_xor);
        //mouse listener for when the mouse button is released
        public void mouseReleased(MouseEvent e)
             if (drawType == this.line)
              // Erase the draft line
              drawLine(draftLine.color, draftLine.startx, draftLine.starty,
                    draftLine.endx, draftLine.endy, drawThickness,
                    this.mode_xor);
              // Add the real line to the canvas
              //When the imput changes to "mode_paint" it is drawen
              //on the canvas
              drawLine(drawColor, oldx, oldy, e.getX(), e.getY(),
                    drawThickness, this.mode_paint);
              dragging = false;
         else if (drawType == this.text)
              if (floatingText)
                   // The user wants to place the text (s)he created.
                   // Erase the old draft text
                   drawText(drawColor, draftText.x, draftText.y,
                                            draftText.text, this.mode_xor);
                       String str = Integer.toString(e.getX());
                       String str1  = Integer.toString(e.getY());
                       coor.append(str + " " + str1 + "\n");
                   // Set the new coordinates
                   draftText.x = e.getX();
                   draftText.y = e.getY();
                   // Draw the permanent text
                   drawText(drawColor, draftText.x, draftText.y,
                         draftText.text, this.mode_paint);
                   floatingText = false;
         public void mouseDragged(MouseEvent e)
            if (drawType == this.freehand)
              drawLine(drawColor, oldx, oldy, e.getX(), e.getY(),
                    drawThickness, this.mode_paint);
              oldx = e.getX();
              oldy = e.getY();
         else
             dragging = true;
         if (drawType == this.line)
            // Erase the old draft line
            drawLine(draftLine.color, draftLine.startx, draftLine.starty,
              draftLine.endx, draftLine.endy, drawThickness,
              this.mode_xor);
            // Draw the new draft line
            draftLine.endx = e.getX();
            draftLine.endy = e.getY();
            drawLine(draftLine.color, draftLine.startx, draftLine.starty,
              draftLine.endx, draftLine.endy, drawThickness,
              this.mode_xor);
         public void mouseMoved(MouseEvent e)
             if (floatingText)
              // When the user has entered some text to place on the
              // canvas, it remains sticky with the cursor until another
              // click is entered to place it.
              // Erase the old draft text
              drawText(drawColor, draftText.x, draftText.y,
                                draftText.text, this.mode_xor);
              // Set the new coordinates
              draftText.x = e.getX();
              draftText.y = e.getY();
              // Draw the new floating text
              drawText(drawColor, draftText.x, draftText.y,
                        draftText.text, this.mode_xor);
         //declare  a class for the line shown before the is as wanted
        class tempLine
         public Color color;
         public int startx;
         public int starty;
         public int endx;
         public int endy;
         public int thickness;
         public tempLine(Color mycolor, int mystartx, int mystarty,
                      int myendx, int myendy, int mythickness)
             color = mycolor;
             startx = mystartx;
             starty = mystarty;
             endx = myendx;
             endy = myendy;
             thickness = mythickness;
        class tempText
         public Color color;
         public int x;
         public int y;
         public String text;
         public tempText(Color mycolor, int myx, int myy, String mytext)
             color = mycolor;
             x = myx;
             y = myy;
             text = mytext;
    }

    http://www.java2s.com/ExampleCode/2D-Graphics/DemonstratingUseoftheImageIOLibrary.htm

  • TS1702 I am having a problem with the apple app Numbers.  It has been waiting for a week.  I can not open it or delete it

    I am having a problem with the apple app Numbers.  It has been waiting for a week.  I can not open it or delete it

    I found the images here: https://support.mozilla.org/en-US/questions/977542#answer-501598

  • I encountered a problem saving a document I just wrote, can someone help me?  See my summary

    I'm having trouble saving a document.  I  copied and pasted a graphic onto the page and was about to save the project when a spinning colorful wheel appeared. It will not allow me to do anything, let alone save the document.  I don't want to loose the document I have worked so hard to produce.  What can I do?  I can use internet, but I cannot do anything with the document i just wrote.  Do you have any suggestions?

    Close but not quite:
    Maximum Memory
    6.0 GB (Actual) 4.0 GB (Apple)
    Memory Slots
    2 - 200-pin PC2-6400 (800MHz) DDR2 SO-DIMM
    You can use a 4 GB and 2 GB module to get to 6 GBs. That should help a bit. But keep in mind you have very old hardware for running Yosemite. That machine should stop at Snow Leopard.

  • Problem saving pages documents as postscript files and pdf files

    Hello!
    My problem occurs when the pages documents are saved as pdfs -they go 'screwy'. If you save as a pdf (through file, print, print as), the certain fonts show a holding maarker rather than spaces on the screen but prints fine. If you save as a postscript (file, print, print as) and convert to a pdf in Preview the fonts are fine on the screen but are blown out when it prints and are all over the page.
    If anyone has any suggestions I am more than happy to try anything.
    Veronica

    As every user, the 'poor silly man' may download "*_Pages User Guide_*" thru the Help menu.
    Doing that, he would be able to read:
    Yvan KOENIG (VALLAURIS, France) jeudi 8 avril 2010 12:39:34

  • Problems saving Pages documents

    Hi our Mac has just started not letting us save Pages documents. We are not doing anything differently!
    If you try to save a new document, after you've chosen the location, it comes up with a pop up saying "the file ... couldn't be opened"
    Any ideas anyone? I've tried searching on here, but can't find anyone with the same problem...
    I tried pasting in to a new doc and that doesnt work either.

    Quit the app. From the menu bar, select
     ▹ System Preferences... ▹ iCloud
    Uncheck the box marked
    Documents & Data
    then check it again.
    Relaunch the app. There will be a delay before your documents stored in iCloud reappear.
    Credit for this solution to ASC member Kreklo.

  • Has anybody else experienced problem saving scanned documents since installing Mavericks.

    I have just scanned a document on Macbook Pro, it is a recipe, I have dozens of recipes scanned to Recipes folder. Now, there seems to be no option to Save the document after scanning.

    Please post a screenshot that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • Im having a problem saving artwork in itunes

    Can someone tell me why the artwork won't save into get info section of itunes

    hrogers1965 wrote:
    Can someone tell me why the artwork won't save into get info section of itunes
    Possibilities:
    Tracks that are read-only.
    Tracks for which your account doesn't have write permissions.
    Tracks in .wav format.
    Tracks with corrupt tags.
    A little more information might narrow it down.
    tt2

  • I'm having a problem sending photos to some numbers via messages.

    I'm having problems sending pictures via messages. Some numbers (where the people have IPhones ) they go though where others as soon as I hit send they comeback Not delivered. Help?

    You may be transmitting to Apple users using iMessage.  But to transmit to non-Apple users, you must rely on your cellular carrier's MMS.
    First, you must have Settings > Messages > MMS Messaging set "On".  Second, you must have an MMS arrangement with your cellular carrier.

  • Having problems saving files in CS2

    I'm learning the program: Classroom in a book from InDesign CS2. In the beginning when the file was small I was having no problem saving the doc. But after The doc got bigger and I had done many things to it, I would save the doc, the save word in file was gray as it is suppose to be, then I would close the file. When I reopened the doc all my work would be gone. I have recreated this 3 times now and the same thing keeps happening, NO SAVED FILE. What am I doing wrong??? Thank you advance for your help, Sherrine

    How are you opening the file (double-clicking an icon, File > Open,
    File > Open Recent, etc.)? Are you saving/opening over a network? It
    sounds to me like you may be opening the wrong file. Try doing some work
    on the file, and then Save As to a unique name. Then use File > Open
    Recent to open the file and see if your changes are there.
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • ABAP error: Call_function_not_found after saving the document in ME22N Tcod

    Hi,
    I am getting Message having CALL_FUNCTION_NOT_FOUND after saving my document in ME22N Tcode.
    Message i am getting in my inbox:
    Transaction..   ME22N
    Update key...   80234FDE6D51F11C9004001A6435E8C6
    Generated....   02.06.2009, 05:15:29
    Completed....   02.06.2009, 05:15:31
    Error Info...   00 671: ABAP/4 processor: CALL_FUNCTION_NOT_FOUND
    Can any one please tell what will be the problem?
    My out type also configured correctly with function module routine and program name.
    Please reply.
    Regards,
    Kusuma.

    Hi Karthik,
    Thank you for ur reply.
    I did not implement any user exit/ badi. Dump is saying that my smarform function module does not exist in the se37 library.
    I have excuted my form through se38, that time is working fine. When i tried through output type it is going to dump.
    Regards,
    Kusuma.

  • Problems saving files in Snow Leopard

    I've just upgraded from Leopard to Snow Leopard (I know I'm a dinosaur...) and am now having major problems saving Appleworks files. 
    When I'm doing corrections, I sometimes need to save a file over 10 times and my helpful "Do you want to replace this file?" box has gone and instead it's saving as a new file and adding another 'full stop' at the end of the file name.  It's driving me nuts!
    Is there any way to get back to just over-writing the file?
    Any help gratefully received...
    Thanks
    Take care
    Marianne

    This is turning out to be really crazy. I haven't added any third party application at all.
    Last night I tried Roger's 'command-S' and it worked on a different document I opened.  I tried the same document, changed it, 'Saved As' and it asked me if I wanted to over-write the file. 
    I then opened the original document I was having trouble with, hit 'Save As' and the same thing happened; it just made multiple copies of the file.  It seems to be a problem with this particular client and all his files; unfortunately, he's the client I do the most work for.
    Now I don't know why it's happening on some documents and not on others.
    Any further ideas?  Can I do something to this client's files, re-save them or whatever, so I don't have this problem?
    Thanks again...
    Marianne

Maybe you are looking for

  • Parallels and Windows Vista Beta 2

    Has anyone been able to successfully load Windows Vista Beta 2 on the final release of Parallels?

  • IPod Classic 120GB ejects every time its connected and found by iTunes.

    My iPod is about to drive me insane, I came home today and connected it to take a few songs off of it and change it so it wouldn't continue to sync my entire library. Upon doing so now every time I connect it it gets ejected before I can restore it b

  • Maybe bug : ListCollectionView.addAll with a filter function

    Hi, I think I found a bug in the flex SDK. I've checked in JIRA and it seems that it is not yet reported. This simple code raise a "out of bouds exception" (flex SDK 4.1) : var list:ArrayCollection = new ArrayCollection(); list.filterFunction = filte

  • Clling Transaction in Function Module

    Hello Gurus, I have one doubt... can we calll the Transaction from function module or remote function module. Thanks and regards zubera

  • Is there a student version

    is there a cheeper student version of this programme i realy need it for my studies but its sooo expensive i would have to sell my self to just buy the box. yetr a great programme