Opening AppleWorks6 documents

When I try to open an AppleWorks document I get Keynote, which tells me it is not an application and therefore won't open it.

ritz,
Welcome to Apple discussions.
It tells you what isn't an application? I don't understand that.
Pages can open AppleWorks files, but only word processing files. Instead of double-clicking on the AW file, open Pages, then click on File > Open... then navigate to the AW file. If it's grayed out, it's not a word processing file that Pages can deal with.
-Dennis

Similar Messages

  • Open AppleWorks6 Documents in Mountain Lion?

    After installing 10.8.2. from 10.6.8. I can not open my AppleWorks6 Documents, but I need to! Can anybody give advice?

    Bob: Here is a more complete set of options and workarounds that are available to you, including continuing to use AppleWorks 6 within Mountain Lion, from a post I assembled for similar question:
    Unfortunately you got caught up in the minor miracle of Rosetta.  Originally licensed by Apple when it migrated from the PowerPC CPU platform that it had used from the mid-1990's until the Intel CPU platform in 2006, Rosetta allowed Mac users to continue to use their library of PPC software transparently in emulation.
    However, Apple's license to continue to use this technology expired with new releases of OS X commencing with Lion (and now Mountain Lion).  While educational efforts have been made over the last 6 years, the fact is that Rosetta was SO successful that many users were caught unaware UNTIL they upgraded to Lion or Mountain Lion.
    Workarounds:
    1. If your Mac will support it, restore OS X Snow Leopard;
    2.  If your Mac will support it, partition your hard drive or add an external hard drive and install Snow Leopard into it and use the "dual-boot" method to choose between your PPC software or Lion/Mt. Lion;
    3. Upgrade to an Intel compatible versions of your software, or find alternatives that will open your data files;
    4.  Install Snow Leopard (with Rosetta) into Parallels and continue to use AppleWorks 6:
                                  [click on image to enlarge]
    Full Snow Leopard installation instructions here:
    http://forums.macrumors.com/showthread.php?t=1365439
    NOTE: STEP ONE of the instructions must currently be completed on a Snow Leopard or Lion Mac and the resulting modified Snow Leopard.cdr install file can then be moved over to your Mountain Lion Mac for completion of the remaining steps.
    NOTE 2:  Computer games with complex, 3D or fast motion graphics make not work well or at all in virtualization.

  • Can't open appleworks6 documents in pages09 after upgrade to lion

    i upgraded to lion a few weeks ago and today tried to access an appleworks 6 .cwk word processing document in pages 09 and it returns an error saying it can not be opened because it is  not a word processing document. 
    i have gone into 'get info' to set pages as the default application to open the document with no luck.  i am absolutely sure it is an appleworks 6.2.9 word processing document.  my pages application is up to date.
    all of our older business contracts and word processing documents are appleworks 6  files.  any ideas why pages won't open the document?  everything i have read indicates that pages should have no problem opening the file.  our spreadsheet files open fine with numbers. 
    any ideas?
    thanks.

    The fact that Lion no longer support AppleWorks is publicized since more than six months.
    Serious users took time to convert their documents before switching to the new operating system.
    If Pages doesn't open the documents I'm quite sure that they aren't AppleWorks 6 WP documents.
    This short script will tell you exactly which kind of file you drop on its icon.
    --{code}
    --[SCRIPT which_kind_of_AWdoc]
    Enregistrer ce script en tant qu'application sur le bureau.
    Exécuter ce script ou déposer l'icône d'un fichier
    sur son icône pour identifier le fichier.
    Save the script as Application on the desktop.
    Run the script or drag and drop a file icon
    on its icon to identify the file.
    Yvan KOENIG le 28 octobre 2008
    -- ===========
    on run (*
    lignes exécutées si on double clique sur l'icône du script application
    • lines executed if one double click the application script's icon *)
              set _ to choose file
              my main({_})
    end run
    -- ===========
    on open (sel) (*
    sel contient une liste d'alias des éléments qu'on a déposés sur l'icône du script (la sélection)
    • sel contains a list of aliases of the items dropped on the script's icon (the selection) *)
              my main(sel)
    end open
    -- =========== Routines
    on main(sel)
              try
                        my exploreTraite(item 1 of sel, "")
              on error MsgErr number NroErr
                        if NroErr is not -128 then
                                  beep 2
                                  tell application (path to frontmost application as string) to display dialog "" & NroErr & " : " & MsgErr with icon 0 buttons {" OK "} giving up after 20
                        end if -- NroErr is…
              end try
    end main
    -- =========== Routines
    on exploreTraite(elem, ptree)
              local elem_, laClasse, flag
              set elem_ to elem as text
              tell application "System Events" to set laClasse to (class of item elem_) as text
              if laClasse is in {"file package", "«class cpkg»"} then (* CAUTION, script returns "file package" but App returns "«class cpkg»" *)
                        error elem_ & return & "is a package !"
      --else if laClasse is in {"folder", "«class cfol»"} then (* CAUTION, script returns "folder" but App returns "«class cfol»" *)
      --error elem_ & return & "is a folder !"
              else
                        set flag to my testeAWWP(elem)
                        tell application (path to frontmost application as string) to display dialog "The file " & return & elem_ & return & "is " & flag
              end if -- laClasse is
    end exploreTraite
    -- ===========
    on testeAWWP(f)
              local flag, deb280, versionNum, marqueur, xx
              set flag to "not a Claris/AppleWorks document"
              set deb280 to (read f from 1 for 280)
              if (text 5 thru 8 of deb280) is "BOBO" then (* it's an  AppleWorks document *)
                        set versionNum to ASCII number of (character 1 of deb280)
                        set flag to {versionNum, 0}
                        if versionNum = 6 then
                                  set marqueur to 279 -- cas de la version AW6
                        else if versionNum = 5 then
                                  set marqueur to 269 -- cas de la version AW5
                        else if versionNum = 4 then
                                  set marqueur to 258 -- cas de la version CW4
                        else if versionNum = 3 then
                                  set marqueur to 250 -- cas de la version CW3
                        else if versionNum = 2 then
                                  set marqueur to 250 -- cas de la version CW2
                        else if versionNum = 1 then
                                  set marqueur to 244 -- cas de la version CW1
                        else
                                  set marqueur to 0
                        end if -- character 1 …
                        if marqueur > 0 then
                                  set xx to (ASCII number (character marqueur of deb280)) (*
    0 = CWGR
    1 = CWWP exported
    2 = CWSS exported
    3 = CWDB exported
    4 = CWPT
    5 = CWPR
                                  if versionNum > 4 then
                                            set flag to "Apple"
                                  else
                                            set flag to "Claris"
                                  end if
                                  set flag to "a " & item (xx + 1) of {"Draw", "Word Processing", "Spreadsheet", "DataBase", "Paint", "Presentation"} & " " & flag & "Works " & versionNum & " file."
                        end if -- marqueur …
              end if --  (text 5 thru 8 …
              return flag
    end testeAWWP
    -- ===========
    --[/SCRIPT]
    --{code}
    Copy it in the clipboard
    Paste in a new window of the application "AppleScript Editor" which is located in :
    Applications:Utilities
    Click on the button displaying a hammer
    menu File > Save
    Select the format Application
    Click the button Save.
    Yvan KOENIG (VALLAURIS, France)  mardi 8 janvier 2011 22:36:41
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • I had Microsoft Office installed in my Macbook Air by one of the technicians in the store, it was working fine the first week but after that it started popping a notice saying it cannot verify my suscription online and now I cannot open any documents?

    I just bought a Macbook Air almost a month now. When I bought it, the technician installed Microsoft Office 365 as they were having a promotion at the time. However after a week of using it, it started popping up a notice saying that it cannot verify Microsoft Office. I still managed to open the word document but as of today, it will not open. I took it to the Mac store last week, and they said that there was nothing wrong with it and they could not figure out any problem.
    I don't know what to do and I am in desperate need of help. I cannot open my documents at all and I have my research paper that I need to finish writing. This is very disappointing and extremely stressful for me. If anyone has any suggestions of how this can be fixed, please let me know. I do not want to lose my hard work =(

    Microsoft Office 365 is a subscription - based service. You have to pay for it... and keep paying for it... and paying for it... as in 365 days a year... or lose your hard work.
    Office Home Premium is a mere $10 a month, but a convenient annual subscription is only $100 a year. This is a substantial discount to Microsoft's Office 365 business products ($150 / employee / year).
    Such a deal! Are you not absolutely thrilled?
    Here are some slightly more reasonable alternatives, all of which are compatible with their Office equivalents:
    LibreOffice (donation-supported)
    NeoOffice ($10 but older version is free if you can find it)
    OpenOffice (completely free)
    Numbers ($19.99)
    Pages ($19.99)

  • This morning, Firefox stopped opening .pdf documents that I am trying to retrieve from websites. It does not download them, and the page goes blank, with nothing more happening. What do I do to fix it?

    I went to the FAA website, and I needed to review a document. I clicked on the link, the page turned blank, but I never saw the document. I tried again, but I still could not get the document. Word documents still bring up the dialog box allowing me to open the document. I went to another website to find additional information on the project I am working on, and I am experiencing the same problem, when I click on a link to a pdf, it will not open, and the download dialog box does not open.
    I have tried looking at applications and plugins, but everything seems to be fine. What do I do to fix this?
    Thanks,
    Anne

    Using the Adobe Reader plugin with Firefox
    * https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox
    Opening PDF files within Firefox
    * https://support.mozilla.com/en-US/kb/Opening%20PDF%20files%20within%20Firefox
    Check and tell if its working.

  • Pages 2.0.2 doesn't open Pages documents from ipad

    Pages 2.0.2 doesn't open Pages documents from ipad 2. Document succesfully transferred as Pages document to computer, but Pages 2.0,2 wouldn;t open it. Version too old?

    Pages 2 is iWork '06, two versions behind what the iOS Pages creates. You need to use Pages '09 which you can purchase from the Mac App Store as a stand-alone application or a retail box of the iWork '09 suite.

  • Open Pages documents from an older version

    I need to open Pages documents from an older version of Pages that I saved to an external drive from a computer that I no longer have access to.  My current operating system is 10.7.5 and I can't upgrade it right now.  I see that Pages 5.0 requires 10.10 or higher and I can't find older versions to download and from what I've read, it doesn't sound like I'd be able to open the old documents with the new version anyway.  I really need these documents. What can I do?

    I found it helpful to convert all my old Pages '08 files to .doc files.  They can be opened by the new version of Pages.
    Since the new version of Pages is no longer back compatible, and so not good for anything you want to keep for a long time, you might consider using an open source word processing application like Libra Office.  That's what I had to do.  After seven years of being a happy Pages user - archiving thousands of files in Pages -Apple has abandoned us.  I no longer think it is wise to use the new Pages and then five years down the road (or sooner) not to be able to open them in a newer version.
    If you would like a quick way to convert your Pages '08 files to .doc, let me know.

  • When I attempt to open a PDF file I saved from a website, I get the message "There was an error opening this document. The file is damaged and could not be repaired." Is there any way to correct this problem?

    When I attempt to open a PDF file I saved from a website using Safari, I get the message "There was an error opening this document. The file is damaged and could not be repaired." When I save the same PDF file using FireFox it opens up immediately. Is there any way to correct this problem with Safari?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Same problem here (no graphics in header or footer) and the problem has been reported months ago. It is another bug/feature lost when Apple moves from 09 to the iCloud-compatible versions.  Complain to Apple, you may have better chance than me and they may finally listen to their users....

  • Pages '08 will not open .doc documents after upgrading to Mavericks

    Since updating to Mavericks Pages '08 will not open .doc documents even when created with Pages.

    I am unable to check what you have on your Mac so you will have to run your own series of tests to determine exactly where the problem lies.
    Starting with the file extension on the Word files.
    You didn't say, but have you installed Pages 5?
    Is your previous installation of Pages '08 in your Applications/iWork folder?
    Peter

  • I just updated my pages and now it won't load. This is on my iPad. The first version which has the latest version it can have 5.1 or something like that. I am trying to open a document and am worried that if I uninstall and reinstall I will lose all my do

    I just updated my pages and now it won't load. This is on my iPad. The first version which has the latest version it can have 5.1 or something like that. I am trying to open a document and am worried that if I uninstall and reinstall I will lose all my documents

    I just uninstalled it and am waiting for it to reinstall. I sincerely hope that I have not lost everything that I worked on so hard. Now that mobile me is gone, I have not been able to go between devices to transfer things. I was merely trying to take a document I had worked on and open it in pages, but it said my version was too old. When I updated, it wouldn't load. Now I cannot do anything. I hope that the reinstall fixes it without losing everything. Please advise!!! Yes, I am in panic mode.

  • I have been sent a 'word document' in which are a series of boxes about thirty lines long to insure written text. When Pages opens the document it extends these to a whole A4 page how do I get it to retain the original layout

    I have been sent a 'word document' in which are a series of boxes about thirty lines long to insert written text. When Pages opens the document it extends these to a whole A4 page how do I get it to retain the original layout

    You can't change the way Pages import .doc files.
    It was never written that it reproduce exactly the original one.
    From my point of view, as I refuse to give a cent to M...soft, the best way to deal with documents issued by their Office suite is to use the free libreOffice.
    Yvan KOENIG (VALLAURIS, France) jeudi 7 juillet 2011 11:34:19 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 !

  • Acrobat Pro XI Mac 11.0.10 freezes every time I open a document

    Every time I open a document in Acrobat XI Pro 11.0.10, the app freezes with a spinning beach ball. Beach ball will go for 10 minutes plus before I can't stand it and force quit. I am using Macbook Pro 15 Retina with Mavericks (OSX 10.9.5). The same document opens without issues under Windows 7 Acrobat Pro XI. I have disabled enhanced security and upgraded form 11.0.7 without any change in behavior. I have also un-installed and re-installed Acrobat from a fresh download off the internet.
    I am getting ready to ask for my $$ back!!  This is ridiculous, Acrobat is completely unusable under Mac.

    Hi David ,
    I would request you to refer to the below mentioned link and check how it goes.
    https://helpx.adobe.com/x-productkb/global/troubleshoot-system-errors-freezes-mac.html
    Regards
    Sukrit Dhingra

  • I am trying to use powerpoint but when I open a document I want to work on it does not open on my desktop. It appears as open on mission control but it disappears offscreen. How can I get it to open where i need it and can work on it?

    I am trying to use powerpoint but when I open a document I want to work on it does not open on my desktop. It appears as open on mission control but it disappears offscreen. How can I get it to open where i need it and can work on it?

    It's almost certainly too late.
    The time to create a backup is before a catastrophe.  After a catastrophe, it's too late.

  • I created a newsletter using pages on my IPAD3.  I can see see it...the icon is till there but when I tap it to open it, I get kicked out of pages.   Tried rebooting  and I can open other documents, but not this one.  Any ideas?

    I created a newsletter using pages on my IPAD 3.  All of a sudden I can no longer open that document.   When I click on it, it throws me out of pages all together.  I can open other pages documents, but not that one.  It is very frustrating to be able to SEE the file, but not open it.
    I rebooted and I do have icloud back-up on but am not sure how to restore an older version.  I also made sure there are no updates for pages.   Until the IPAD I used a home PC which I still have but am trying to wean myself off of.  I wish now I had used MS Publisher on my PC for the newsletter even though I hate it.   
    Please don't tell me I have lost my Newsletter and 20 hours worth of work.  

    Try resetting your iPad.  Hold the on/off and home buttons together for 7 or 8 seconds till the Apple logo appears.
    I'm assuming your default is to save Pages documents to iCloud, and that you had a good WiFi connection when you closed Pages the last time you tried to save the document.

Maybe you are looking for