AppleWorks 6.2.9 'Save As' Problem

Hello all,
Whenever I use the 'Save as' command to save a file in any other format but ApplewWorks the results is: When I try to open the saved file I get this error message: 'The file appears to be damaged and can not be opened.'
Thanks for any help!
350mz iMac   Mac OS X (10.3.9)  

Hello
As it works well for me (under 10.4.8), I assumes that it's time to look at the good old Peggy's tip:
http://discussions.apple.com/thread.jspa?threadID=121704
Yvan KOENIG (from FRANCE dimanche 18 février 2007 20:49:46)

Similar Messages

  • Space Designer Save Setting Problems

    Space Designer Save Setting Problems
    On the right side of the space designer you have "dry" and "rev" settings.
    On reopening the plug-in the dry setting switches back to zero, although I saved it at a different setting...
    Everytime, every project...

    Does it do this on audio/software instrument channels and aux channels?
    In general, when you load SD on an aux channel, Logic assumes it's going to be an FX return and so "helps you out" by setting the dry level to zero for you...
    On other channel types it should work as expected...

  • Save As problems in Microsoft Word?

    I upgraded to Mavericks last week and am either having repeated Senior Moment memory lapses or having periodic problems saving Word files (Office 11 14.3.8).  Both times this happened, I made changes to a Word document and saved it and closed it.  Then I later went back and opened the file later and the changes were not there.  The first time, I thought perhaps I had screwed up, but then it happened again this morning.   I think they were both files sent as email attachments, opened from the attachments and then Save As with a new name to a different location.  So it might be a Save As problem.  I wanted to post this in case there are others out there scratching their heads and thinking it is just them.

    Sorry for the senior moment comment.  I was following onto your mention of that phrase.
    If you go into File > Open Recent > More… you can select files you have touched Today, Yesterday, Past Week…
    Selecting a file and doing a Save As… should point to the folder where the file went.
    Does this work for you to find the file?

  • Acrobat Reader Versions and saveAs, exportXFAdata Problems

    We use generate Forms with Reader Extension Save enabled.
    The forms are then opened within Acrobat Reader. In the onClose Event a Script called "saveXMLData" is called. This script is install in the javascript folder of the reader installation.
    The script :
    var saveXMLData = app.trustedFunction(function(doc)
         app.beginPriv();
         doc.saveAs({cPath:"/c/windows/temp/savedForm.pdf",
              bCopy: true,
              bPromptToOverwrite: false });
         doc.exportXFAData({
              cPath:"/c/windows/temp/savedForm.xml",
              bXDP:false
         app.endPriv();
         return;
    Using Acrobat Reader 7, eveything worked fine.
    Using Acrobat Reader 9 "saveAs" crashes the Application after the document is saved and the filled in Data is not saved.
    Without the saveAs function, at least the export File is generate but the data that where filled in are missing.
    Using Acrobat Reader X "saveAs" crashes the Application as well. Leavin out the saveAs function, the export File is generated as expected. Thus the filled in data values are saved.
    Using Acrobat X Pro everything works as with Acrobat Reader 7.
    Our Problem is that the customer uses Acrobat Reader 9. Are there expected incompatibilities with the different versions. Does anybody know any workarounds, settings?
    By the way disabling extended security does not help.
    Thanks
    Max

    It cannot be a problem of the installation, because at least Windows 7
    was a fresh install with nothing but Reader additionally installed.
    By the way, what do you mean by "risky", I followed straight the
    documentation from Adobe, where one is allowed to place function calls
    requiring a privileged context.
    Have you any better idea where to place the call to save? It must be
    called automatically, when the User closes the window, no additional
    interaction is possible.
    One other thing is the call to exportXFAData, have you any idea why
    there is a difference in behavior between reader version 7 / 10 and 9?
    I wrote that in version 9 the user entered data is missing.
    Am Donnerstag, den 21.07.2011, 05:53 -0600 schrieb try67:
    No, it doesn't work.
    Sorry, I don't have any ideas except for trying to repair the installation
    of Reader.
    However, placing code in the WillClose event is considered risky and should
    be avoided if there are alternatives available.
    >

  • Save file problem in network hard disk

    I connect to network hard disk called X:
    When i open a pdf file in X: and change something to save.
    A message will tell me "Files can not be saved, can not be saved to this file name, use a different name or save this file in another folder"
    But if I use \\192.168.0.1 connect to network hard disk.
    And do same thing to save file.
    It can save success.
    Anyone have same problem?
    Thanks.
    OS: win 7 professional SP1
    Adobe Reader 11.0.10

    Hey YaoTingHuang,
    Please try saving any other PDF file to the same folder location and check if the same message appears.
    Let me know what happens if you disable protected mode under Edit> Preferences> Security (Enhanced) and uncheck 'Enable protected mode at startup'
    Hope to hear from you.
    Regards,
    Anubha

  • Forms save message problem!

    Um working in forms 9i.
    I have set SeprateFrame = True in the configuration file, so that the forms applet opens up in a new window.
    Now there are two BROWSER windows...one, in which user types the URL of the Forms server and Second, in which the forms applet opens.
    I can close the form without getting the default Forms "Do u want to save the ....?" message (by clicking the cross button on the APPLET inside the BROWSER)if there are any pending changes in the data block with a form level When_Window_Closed trigger using Exit_Form(No_Validate). But the problem starts when there are pending changes in the form and I directly press the cross button on the BROWSER which encloses the APPLET. I get the same annoying Forms message "Do u want to save?".
    Could somobody tell me how to control the BROWSER window enclosing the APPLET, because all the forms triggers are related with forms only and one have no control over the BROWSER.
    Please help.

    hi
    try this.
    BEGIN
                   /* ** Force validation to happen first */
                   Enter;
                   IF NOT Form_Success THEN
                        RAISE Form_Trigger_Failure;
                   END IF;
                   /* ** Commit if anything is changed */
                   IF :System.Form_Status = 'CHANGED'
                        THEN
                        Commit_Form;
                        /* ** A successful commit operation sets Form_Status back ** to 'QUERY'. */
                        IF :System.Form_Status <> 'QUERY' THEN
                             Message('An error prevented your changes from being committed.');
                             Bell;
                             RAISE Form_Trigger_Failure;
                        END IF;
                   END IF;     
    :system.message_level := '10';
    COMMIT_FORM;
    :system.message_level := '0';
    if
    :system.form_status != 'CHANGED'
    then
    -- go_block('block');
    else
    Message ( 'Your entered data could not be saved. Please check the form.' );
    Message ( ' ' );
    end if;
    end; -----
    On-Message trigger (Form Level)
    begin
    if
    abs ( message_code ) = 40400
    then
    clear_message;
    bell;
    message ( message_text, no_acknowledge );
    else
    message ( message_text );
    end if;
    end;
    Sarah

  • NormalEmail.dotm pop up 'save as' problem, citrix server

    Hello,
    Problem:
    When sending a Word document as a PDF (File -> Save and
    Send -> Send as PDF) via Outlook.  A continuous prompt
    of  'Save As' shows up trying to save the NormalEmail.dtm file to the users profile.  The email sends but this pop-up occurs every time.
    Our Environment:
    Citrix user profile management.
    Outlook 2010
    Word 2010
    Temp Fix:
    Deleting normal.dotm and normalemail.dotm under C:\profiles$\%username%\AppData\Roaming\Microsoft\Templates
    Copying our default NormalEmail.dotm file to that location.
    This is a solution until the user logs off and back onto the citrix server refreshing their Email Profile (Unpacking/Unloading)
    Searching through the forums, people mentioned outlook addins, but running the Outlook client in Safemode offered no solution
    Thank you

    Hi,
    Please open your Registry Editor and check on the AppData registry value to see if it is set to a value date other than %USERPROFILE%\AppData\Roaming. If so, try changing it back to %USERPROFILE%\AppData\Roaming and then test the issue again.
    If above doesn't work, we can also try adding the following registry key to see if it helps:
    HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\Microsoft.OutlookBackup.1
    DWORD: RequireShutdownNotification
    Value: 1
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Save project problems

    Hi, I'm pretty new to TopLink and am having problems saving my project after mapping attributes one to many. I've included the stack trace below - the problem happens if I simply click the one-many icon and try and save.
    Any help would be much appreciated!
    Thanks,
    Ewan Benfield
    Throwable Class Name:
    oracle.toplink.exceptions.QueryException
    Message:
    EXCEPTION DESCRIPTION: The object [BldrClass[2b74bd] (java.util.Vector, modifier = public , array=, implements [BldrClass[c1f5f] (java.lang.Cloneable, modifier = public abstract , interface, array=, implements []), BldrClass[1d39] (java.io.Serializable, modifier = public abstract , interface, array=, implements []), BldrClass[39e891] (java.util.List, modifier = public abstract , interface, array=, implements [BldrClass[ff7d3] (java.util.Collection, modifier = public abstract , interface, array=, implements [])])], extends AbstractList)], of class [class oracle.toplink.workbench.model.meta.BldrClass], with identity hashcode (System.identityHashCode()) [2,847,933],
    is not from this UnitOfWork object space, but the parent session's. The object was never registered in this UnitOfWork,
    but read from the parent session and related to an object registered in the UnitOfWork. Ensure that you are correctly
    registering your objects. If you are still having problems, you can use the UnitOfWork.validateObjectSpace() method to
    help debug where the error occurred. For more information, see the manual or FAQ.
    QUERY: WriteObjectQuery(BldrClass[2b74bd] (java.util.Vector, modifier = public , array=, implements [BldrClass[c1f5f] (java.lang.Cloneable, modifier = public abstract , interface, array=, implements []), BldrClass[1d39] (java.io.Serializable, modifier = public abstract , interface, array=, implements []), BldrClass[39e891] (java.util.List, modifier = public abstract , interface, array=, implements [BldrClass[ff7d3] (java.util.Collection, modifier = public abstract , interface, array=, implements [])])], extends AbstractList))
    Stack trace:
    LOCAL EXCEPTION STACK:
    EXCEPTION [TOPLINK-6004] (TopLink - 9.0.3 (Build 423)): oracle.toplink.exceptions.QueryException
    EXCEPTION DESCRIPTION: The object [BldrClass[2b74bd] (java.util.Vector, modifier = public , array=, implements [BldrClass[c1f5f] (java.lang.Cloneable, modifier = public abstract , interface, array=, implements []), BldrClass[1d39] (java.io.Serializable, modifier = public abstract , interface, array=, implements []), BldrClass[39e891] (java.util.List, modifier = public abstract , interface, array=, implements [BldrClass[ff7d3] (java.util.Collection, modifier = public abstract , interface, array=, implements [])])], extends AbstractList)], of class [class oracle.toplink.workbench.model.meta.BldrClass], with identity hashcode (System.identityHashCode()) [2,847,933],
    is not from this UnitOfWork object space, but the parent session's. The object was never registered in this UnitOfWork,
    but read from the parent session and related to an object registered in the UnitOfWork. Ensure that you are correctly
    registering your objects. If you are still having problems, you can use the UnitOfWork.validateObjectSpace() method to
    help debug where the error occurred. For more information, see the manual or FAQ.
    QUERY: WriteObjectQuery(BldrClass[2b74bd] (java.util.Vector, modifier = public , array=, implements [BldrClass[c1f5f] (java.lang.Cloneable, modifier = public abstract , interface, array=, implements []), BldrClass[1d39] (java.io.Serializable, modifier = public abstract , interface, array=, implements []), BldrClass[39e891] (java.util.List, modifier = public abstract , interface, array=, implements [BldrClass[ff7d3] (java.util.Collection, modifier = public abstract , interface, array=, implements [])])], extends AbstractList))
         at oracle.toplink.exceptions.QueryException.backupCloneIsOriginalFromParent(Unknown Source)
         at oracle.toplink.publicinterface.UnitOfWork.getBackupClone(Unknown Source)
         at oracle.toplink.publicinterface.UnitOfWork.getBackupCloneForCommit(Unknown Source)
         at oracle.toplink.queryframework.ObjectLevelModifyQuery.prepareForExecution(Unknown Source)
         at oracle.toplink.queryframework.WriteObjectQuery.prepareForExecution(Unknown Source)
         at oracle.toplink.queryframework.DatabaseQuery.execute(Unknown Source)
         at oracle.toplink.publicinterface.Session.internalExecuteQuery(Unknown Source)
         at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(Unknown Source)
         at oracle.toplink.publicinterface.Session.executeQuery(Unknown Source)
         at oracle.toplink.publicinterface.Session.executeQuery(Unknown Source)
         at oracle.toplink.internal.sessions.CommitManager.commitAllObjects(Unknown Source)
         at oracle.toplink.publicinterface.Session.writeAllObjects(Unknown Source)
         at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(Unknown Source)
         at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(Unknown Source)
         at oracle.toplink.publicinterface.UnitOfWork.commitAndResume(Unknown Source)
         at oracle.toplink.workbench.ui.BldrSession.saveProject(Unknown Source)
         at oracle.toplink.workbench.ui.BldrMainView.saveProject(Unknown Source)
         at oracle.toplink.workbench.ui.BldrMainView.saveSelectedProjects(Unknown Source)
         at oracle.toplink.workbench.ui.BldrActionManager$104.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.AbstractButton.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

    Hi Darren,
    Thanks for the reply. No, it doesn't have neediness icons. Saving into a new, empty folder doesn't work and I now have two actions which cause a project that did save to stop saving:
    1. Make a particular field 1-many and fill in the descriptor ( which works in generated code)
    2. Generate a particular new class, specify primary key, and save.
    I've been using TL for ten days or so without other problems - but the project saving is beyond me so far!
    One can't reload Toplink from the XML files/ descriptor file rather than the project file perhaps?
    Ewan

  • Chris Lord save as problems with actions

    Hi..I have been experiencing a frustrating problem. When running an automated batch action which ends with a 'save as' command to a 'action completed' folder, the files keeps overwriting the previous files in the batch and retains name of the first file processed by the action.
    Other actions I have created never had this problem, but all of a sudden it simply refuses to save the individual files without overwriting the previous one.

    Are you setting the batch dialog to override save as steps. also when recording save as steps in actions its best to use the file type pull-down menu to set the file type and not to set the name just take the default so no name is recorded in the action step. Expand your action's save as step make sure no file name has been recorded into the step.

  • Photoshop File Save as problem

    buenos dias:
    mi problema es que descargo photoshop y lo instalo en mi portatil acer one con xp
    y puedo trabajar una fotografia normal pero cuando voy a archivo guardar como...
    esta opcion no funciona ¿que debe hacer? gracias por la ayuda

    DIDIER´s wrote:
    Good day:
    My problem is that I download photoshop and install it on my laptop acer one with xp
    and I can work a normal photo but when I go to file save as...
    This option does not work is that to do? Thanks for the help
    Does your laptop have a screen with a resolution of at least the minimum required 1024 x 768 pixels?  If not, Photoshop will not be able to display the File - Save dialog.
    -Noel

  • Photoshop CS5.1 (12.1) "save as" problem

    Problem started yesterday, and has now happened twice.
    I've been working along just fine all day (yesterday and today). Then, I open an image, change it from RGB to CMYK or BW, make adjustments, or a clipping path, and then tried to save as (so that I can save as tiff instead of jpeg) and I get the spinning beach ball. The only way out of it is to force quit. I re-start Photoshop and try again, even with a different image and without changing anything, and I have the same problem. I have to completely re-start my computer in order to continue working. Once I do, everything seems to be working fine.
    I've not made any changes to my setup today, nor have I updated any software today.
    Thanks in advance for your help.
    Susan
    Model Name: MacBook Pro
      Model Identifier: MacBookPro8,2
      Processor Name: Intel Core i7
      Processor Speed: 2.2 GHz
      Number of Processors: 1
      Total Number of Cores: 4
      L2 Cache (per Core): 256 KB
      L3 Cache: 6 MB
      Memory: 4 GB

    ok, in the middle of deadline i've managed to run disk utility and repair permissions, and the problem persists.
    i can't find a pattern of activity to establish a cause action. the files are opened from different folders and would be saved to the same folder. permissions are all correct.
    when the problem occurs, I have chosen "save as" either from the file menu or keyboard shortcut. the dialog box doesn't appear... just the spinning beach ball. force quit is the only way out and restarting photoshop consistently produces the problem until i do a complete restart.
    it's intermittent, but it's getting worse.
    deadline is done, but i'm about to start another. any more suggestions would most be greatly appreciated.
    susan

  • Adobe Reader X 10.1.4 save/print problem

    I have been unable to save or print PDF's for several days using Adobe Reader X 10.1.4 on Windows 7. The PDF loads and the grey bar appears but it disappears after 1 or 2 secs. even if I click on the save or print icon.  I have uninstalled, reinstalled, rebooted, & cleaned my cache.  I have tried several PDF's from different sources including those I had success with last week so I don't believe it is the author blocking it. Any help would be appreciated.  Thanks.

    Are these local or online documents?
    Online: do you have the same problem with this http://helpx.adobe.com/acrobat/release-note/release-notes-acrobat-reader/_jcr_content/main -pars/download/file.res/Acrobat_Reader_ReleaseNote_10.1.4.pdf ?

  • Save project problem

    Hi there, i'm new here my name is Giovanni and im from Italy. Anyway, ive got a serious problem with adobe premiere cs5:
    Ive made a project music video like 4:00min long, i saved the project checking the size file that is like 15.000kb, than i dont know why the project is gone be crazy, ive saved the project again "the same project, at the same time with the same files" and the save size became 77.000kb, and when i try to open the project it will crash when about 70 on 80 files are loaded. I took an auto-save project that was still 15.000kb but when i save the project again the file became again 77.000kb and it will crash again if i re-open it. Someone knows what it depends on?
    My sys specs:
    i7 860 @4.0ghz
    8 Gb XMS3 DDR3
    2x GTX570SLI
    1 HDD Sata3 1TB and 4 HDD's Sata3 500gb RAID-0
    TX850 Corsair Power
    Note: I can still open an auto-save file, but when i try to save the project is the same problem...
    Pls, Help me.
    Thanks a lot and sorry for my english xD

    Solved the problem after 2 hours thinking and tryng more ways...
    Problem without fix:
    1. Ive made a project of 4 minutes, and after 2 days, ive saved the project.
    2. The saved project was 15mb, and than became 77mb strangely.
    3. Ive tryed to open an auto-save project of the same, but ever when i try to save the project became 77mb.
    4. So opening the 77mb project will crash before that every file is loaded in the project.
    If you get this problem what you have to do:
    1. You have to find a recent auto-save that isnt obsolete [ 77mb for 80clips per 40gb is obsolete, instead 15mb for 80clips per 40gb isnt obsolete ]
    2. You have to create a new project with same settings, and than you have to load the "auto-save" project importing in this project the main "Sequence".
    3. Than you have to make a rendering of the project, and than save the file making a backup of it.
    Now the project is 7mb Size with 80clips per 40gb.
    Is fast to open and to render, better than before.

  • N79 Power Saver Theme Problem

    I bought an N79 just last mounth.
    it's a sweet phone but i have an small problem.;
    when i choose a theme for power saver (Date, text, slide show , ....) it have been shown for only 2 seconds and disappear and screen goes to BLACK.
    even i choose longest time for power Saver but it did not work.
    anyone has problem like this? any idea?
    Does NOKIA fix this problem in new firmware?
    how can i report this BUG to NOKIA?
    thanks
    Nokia N79 4GB
    SW Version: 32.001 RM-348 MEA

    I really doubt this is a deliberate design. Most other Nokia phones have the same "power saver" which pops up when the phone is idle, and all of them - even current ones - are set up so that:
    1) The power saver appears after its timeout
    2) The backlight switches off after its own, independent timeout
    3) The power saver remains shown regardless of the phone's current state
    Why would the Power Saver have its own timeout and selection of Power Saver screens designed to show you the date and time, if it can only be shown for 2 seconds? I'm disappointed that Nokia support is disregarding this issue, but I assume it's more out of ignorance and a stock response than any insight into their plans for future firmware updates. Is there a "bug report" page or something we can use to ensure it's properly logged and not just dismissed?
    Help I'm trapped in a sig factory.

  • Screen Saver Pixelation Problem

    Greetings All;
    Here is a weird situation: After several minutes of inactivity, my Mac will go into the Screen Saver mode and display pictures from my Pictures folder. About third to half of the pictures displayed will be pixelated - not clear. The pixelated pictures are random.
    How can I fix this problem?
    Thank you.

    Hi ya Bruce;
    You the Man! It worked! Kinda strange that the Pictures folder has the problem but not Photos.
    Thank you. Thank you.

Maybe you are looking for