Cannot open documents originally in Word 2008 for Mac and saved in Pages 09

I have both Word 2008 for Mac and IWork 09. Working on long and complicated documents in Word, I had a number of problems with Word so that I decided to switch to Pages. I copied my documents into Pages, and saved them in Pages. Now, when I want to open them in Pages, I get a message that Pages cannot open those documents.The message says: the "file" couldn't be opened. The required index.xml file is missing.
Again: original Word document, properly saved into Pages. the saved Pages file cannot be opened in Pages.
What do I do wrong?
Thanks.

You haven't done nything. This problem has happened for people from time to time
Read some threads
[http://discussions.apple.com/thread.jspa?messageID=10050371]
[http://discussions.apple.com/thread.jspa?messageID=10509885]
[http://discussions.apple.com/thread.jspa?messageID=9514639]
[http://discussions.apple.com/thread.jspa?messageID=9401344]
There are more if you do your on search in the forum.
Try to save open and save the Word doc again in Pages. It might work better.

Similar Messages

  • Compatibility - MS Word 2008 for Mac and PC MS Word

    I teach online classes, and many of my students have switched to using Word 2007. My Word 2004 couldn't open the .docx files, so I recently upgraded to MS Word 2008 for Mac.
    Now, I can open and read all .docx files. But I can't open all the documents my students are submitting. Sometimes I will click on the document icon, and I will get a message that calls it a "binary file." I will be allowed to save it disk, but that doesn't work.
    What's a "binary file"? Why is that happening? How can I get around it?
    (By the way, it's not a solution to ask students to "save as" a particular type of document. A few will understand and comply, but most haven't a clue/don't care/can't be bothered/whatever.)

    some tips pulled up by Google "Word 2008 .docx files"
    *Word 2008 12.1 can not open files created by Word 2007 (or maybe any old Word program?) by double-clicking them in the Finder.*
    Prior to installing the 12.1 Service Pack, I was able to double-click on any .doc/.docx file generated by Office 2007/SP1 -- and it would open in Word 2008 12.0.1. After installing the 12.1 Service Pack, I can only double-click-open files I've created on my Mac (with any version of Word.)
    Any version of WinWord files? They can be opened via the "File --> Open" menu command -- but double-clicking on them will not open the document. I can "save as" the files I have to open with the menu and those will open -- but not the original.
    http://www.macintouch.com/readerreports/office2008/topic4749.html#d15may2008
    http://www.macintouch.com/readerreports/office2008/topic4722.html#d26feb2008
    Daniel Bell - .docx documents are really just zip containers. If you receive one that is a folder just re-zip it and change the .zip extension to .docx Provided the folder structure hasn't been tampered with it should then open OK.
    [If you select one of the docx files in the Finder and then Get Info (Command-I), you can set the Open With section of the Get Info window to Open with XML Converter and then click Change All to apply that setting to all docx documents. -MacInTouch]
    http://www.macintouch.com/readerreports/leopard/topic4381.html#d01nov2007
    http://www.creativetechs.com/iq/convertms_word_2007_docx_files_for_amac.html
    Pages, NeoOffice and OpenOffice can open .docx
    http://www.microsoft.com/mac/downloads.aspx
    http://blogs.msdn.com/macmojo/archive/2007/05/15/get-converted.aspx

  • Word 2008 for Mac and NFS mounted home directories "Save File" issues

    Greetings everyone,
    (Long time lurker, first time poster here)
    I admin a small network (under 20 workstaitons) with a centralized NFS server, with user home directories mounted via NFS upon login.  Users are authenticated via LDAP.  This is all working fine, there is no problem here.  The problem lies when my users use Microsoft Word 2008 for Mac.  When they attempt to save a file to thier Desktop (or Documents or any folder under thier home dir) they are met with the following message:
    (dialog box popup)
    "Word cannot save or create this file.  The disk maybe be full or write-protected.  Try one or more of the following: * Free more memory. * Make sure the disk you want to save the file on is not full, write-protected or damaged. (document-name.ext)"
    This happens regardless of file format (Doc, Docx, Txt) and regardless of saved location under the network mounted dir.  I've noticed that when saving Word creates a .tmp file in the target directory, which only further confuses me to the underlying cause of the issue.
    When users logon to a local machine account and attempt the save, there is no issue.
    I have found many posts in other commuity forums, including this one, indicating that the issue is a .TempoaryItems folder in the root of the mounted directory.  This folder already exists and is populated with entries such as "folder.2112" (where 2112 is the uid of the LDAP user).  I find other posts indicating that this is an issue with Word:2008 and OSX10.8, with finger pointing in either direction, but no real solution.
    I have installed all Office for Mac updates from Microsoft (latest version 12.3.6).
    I have verified permissions of the user's home dir.
    I have also ensured that this issue effects ONLY Microsoft Office 2008 for Mac apps, LibreOffice and other applications have no issue.
    Does *ANYONE* have a solution or workaround for this issue?  While we're trying to phase Microsoft products out, getting users to ditch Word and Excel is difficult without removing them from systems completely.  So any pointers or help would be greatly appreciated.
    Thanks.
    ~k

    I can't tell you how to fix bugs in an obsolete version of Office, but a possible workaround is to use mobile home directories under OS X Server. The home directories are hosted locally and synced with the server.

  • How do I repaginate a PDF document in Word 2008 for Mac?

    I am trying to repaginate a PDF document made in Word 2008 for Mac, which I have uploaded to Scribd for public perusal.  Unfortunately, whatever I do to the settings for the document it always comes out in reverse order. (60 - 1 instead of 1 - 60)
    The problem is not with Scribd, as they just reproduce the document in the order in which it is sent.  Somewhere along the line, the pages are reordered. They are not numbered in the document. 

    Hi,
    Try this AppleScript :
    It will create a new PDF file (the name will be "the original Name + _reverse.pdf"), it reverse the pages order.
    Open the "AppleScript Editor" application.
    Copy/paste this text in the window :
    set a_PDF to POSIX path of (choose file with prompt "Select a PDF file to reverse the pages order." without invisibles)
    do shell script "export VERSIONER_PYTHON_PREFER_32_BIT=yes
    /usr/bin/python -c  'import os, sys, Foundation
    from Quartz import *
    this_pdf = CGPDFDocumentCreateWithProvider( CGDataProviderCreateWithFilename( sys.argv[1] ))
    if this_pdf is None:
       print \"Error reading PDF document\"
       sys.exit(1)
    tName, ext = os.path.splitext(sys.argv[1])
    new_file = \"%s_reverse.pdf\" % (tName)
    cfstr = Foundation.CFStringCreateWithCString(None, new_file, Foundation.kCFStringEncodingUTF8)
    url = Foundation.CFURLCreateWithFileSystemPath(None, cfstr, 0, False)
    c = CGPDFContextCreateWithURL(url, CGRectMake (0, 0, 0, 0), None)
    cnt = CGPDFDocumentGetNumberOfPages(this_pdf)
    for page_number in range( cnt + 1, 0, -1):
       page = CGPDFDocumentGetPage(this_pdf, page_number)
       r = CGPDFPageGetBoxRect(page, kCGPDFMediaBox)
       CGContextBeginPage(c, r)
       CGContextDrawPDFPage(c, page)
       CGContextEndPage(c)
    CGPDFContextClose(this_pdf)
    CGPDFContextClose(c)' " & quoted form of a_PDF
    Click on the "Run" button.
    Select your PDF file when the dialog is displayed.

  • Cannot Interact with Microsoft Word 2008 for Mac after Opening

    After I open Microsoft Word 2008 for Mac, either by opening a .docx file or opening Word from the Applications folder, I am not able to interact with the application whatsoever.  Selecting its icon in the dock does not bring any of its windows to the front, nor does it show the Word menu at the top; instead, it still shows the menu of whatever application was previously selected.  But the windows do exist if I move other windows out of the way.  If I do get to a Word window, I cannot click on anything, select anything, resize it, close it, or scroll.
    Other info: If I click and hold the Word icon in the doc, the menu displays as if the application were functioning normally; it does not show a Force Quit option, as it would if Word were frozen.  I do not see any dialogue boxes or anything that would take the focus away from the other windows.
    Background: I was able to successfully use Word without any problems before today, using the same installation of the application, same computer, and same operating system. I also never had this problem before Mavericks, though, as I said before, I didn't always have this problem in Mavericks.
    How do I get Word to function normally again?  Thanks for any help you can provide!

    After letting Word run for quite a while, a popup window told me there was an issue with the database.  I opened the Microsoft Database Utility and rebuilt the database.  It seems to be working fine now.

  • I can't see the scrollbar on my microsoft word 2008 for mac documents

    For some reason, in microsoft word 2008 for mac, I can't see my scrollbars on my documents.  I've tried everything, but they aren't visible.  This problem started when I got my new mac air and transferred over my programs and files.  Any ideas?

    make sure your documents setting on your iPhone is truned on for the iCloud. Go to settings, > iCloud > switch documents & data is on.

  • Does anyone know how to open a .shs file on Word 2008 for Mac? Any ideas??

    Does anyone know how to open a .shs file on Word 2008 for Mac? Any ideas??

    Ask on the Microsoft Mac forums:  http://answers.microsoft.com/en-us/mac

  • How do I change default tab from .5 to .25 in word 2008 for mac?

    Mountain Lion
    How do I change default tab from .5 to .25 in word 2008 for mac?
    Thanks
    Message was edited by: Rafael Montserrat1
    Thanks, Rafael

    They haven't been checked as Solved, it's an option for you to choose one if the answer has solved your problem. You can mark one answer as Solved, and two as helpful. Only you, as the originator of the topic, can see these buttons.
    Sorry for the goofed answer. Most people are looking to set the margins and I looked over that you were interested in the tabs.
    To save tabs in fixed positions that will appear with every new document, you must modify the default template. You can't open the template from the desktop. If you do, it will open as a standard document. You must open it from the Open dialogue box from within Word. With Word in the foreground, press Command+O and navigate to:
    /Users/your_account/Library/Application Support/Microsoft/Office/User Templates/
    Open the file Normal.dotm
    Set your tabs and save the file. Close the template. All new documents will now open with those preset tabs.

  • Word 2008 for Mac - toolbars

    I have upgraded to Word 2008 for Mac - but whenever I open it the toolbars arent there as they used to be in previous versions or on PCs. I cant find a setting to have them there as a default. I have to go to Edit - Toolbars and 'un-tick' the standard toolbar and then 'click' it again - then it stays there - but only for that document and not any others that are open at the same time.
    Does anyone know how to have the toolbar there as a default?
    thanks.

    Arnie C,
    I'm not aware of any toolbar settings under the Edit menu. Are you referring to one under View > Toolbars? You can try deleting the Office & Word .plists from ~/Library/Preferences and then restart. Perhaps that might assist.
    com.microsoft.Word.plist
    com.microsoft.office.plist
    Another thing to add, you've asked this question in the 'display' sub forum which is designed for questions regarding the display/monitor and related hardware issues. You might wish to ask this question via Microsoft's Office for Mac support forums/channels.

  • Locking Styles using Microsoft Word 2008 for Mac

    Greetings-
    I'm not sure if this is a good place to post a software question, but I having difficulty locking styles on Microsoft Word 2008 for Mac. When I try locking a document's styles on a PC it allows you to lock only the styles but allow users to edit anything else in the document. When I try to open the same document on a Mac the entire document is write protected.
    I tried setting up the document protection using my Mac and it only gave me these three options: Protect for: Track Changes, Comments, Forms. I only want to protect the styles.
    I hope this makes sense. Does anyone have any suggestions?
    Thanks.
    Kevin

    tnganalyst wrote:
    Does anyone have any suggestions?
    One suggestion is to ask in the Word forums at Mactopia, MS's site:
    http://www.officeformac.com/ProductForums/Word/
    Someone here may have an answer, but this is a forum for Apple products. As such, you may have a better chance of getting an answer there.
    Good luck!

  • How do I display the clipboard in Word 2008 for Mac?

    How do I display the clipboard in Word 2008 for Mac?

    I see that using the actual Adobe PDF Maker 9 toolbar seems to be working now.
    Thank you for your help!
    Kind regards,
    Tim

  • Bluetooth keyboard and Word 2008 for Mac after Yosemite

    Bluetooth keyboard (apple) on 27 " iMac (mid 2010) won't work in Microsoft Word 2008 for Mac after Yosemite. It is paired and recognized and works normally otherwise.  Mouse works fine, too.

    Follow up: After trying a number of different approaches I finally shut off the iMac and let it stay off for several minutes and then restarted it. This is something I had read that another user had tried and had worked for him. To my surprise, the keyboard now works in Word 2008. I have no idea if this will continue to work, or if it might work for any of you, but I would give it a try.
    Process:
    Shut Down your Mac
    Let it stay off for several minutes
    Power up and check to see if your bluetooth keyboard works in Word 2008.
    Good luck!
    chuck

  • Hi, I cannot open nef files in elements 4 for mac

    Hi,
    I cannot open nef files in elements 4 for mac.

    For the D3000 you need version 7 or higher. PSE4 is too old.
    You would need to download the converter to change NEF to DNG to open them in PSE4
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4575

  • Word 2011 for Mac Issue with Custom Page Size

    I have installed Microsoft Office 2011 for Mac on my brand new iMac.  I'm using Microsoft Word 2011 for Mac and I have opened the "Word Publishing Layout" template (this is essentially Microsoft Publisher).  I'm trying to set up custom page sizes by performing the following steps.  I go to File --> Page Setup and use the following settings:
    1. Settings: Page Attributes
    2. Format For: Any Printer
    3. Paper Size:  I choose "Manage Custom Sizes"
    4. I create a 24x36 page and save it
    When I do this, Word 2011 (and Word 2008) for Mac will only go to a maximum of 22 inches wide and 22 inches in height.  Is there any way around this?  I need the big sizes to do digital proofs for my business.  I don't want to scale down to 12x18 (essentially cutting the proof by 50%) because when I import it into my other program that can accommodate any size document, I have to do a lot of manual work to get things back to scale.  Thanks in advance for your help.  If we can figure this out, I'll be grateful.
    AC

    Please re-post on the Office for Mac Product Forums

  • I recently upgraded to Lion and i find that my computer is running slow and applications are crashing.  For example I have Word 2011 for Mac and it crashes all the time I end up losing my work.  It often happens when I'm in notebook trying to record.

    i recently upgraded to Lion and i find that my computer is running slow and applications are crashing.  For example I have Word 2011 for Mac and it crashes all the time I end up losing my work.  It often happens when I'm in class using notebook and when I press record my computer starts thinking and it freezes.
    Also, I feel that it overheats often and my battery runs out pretty quickly.  I had the macbook (black) and this never happened before.  I'm not sure if I'm doing something wrong or if there is something with my computer.I bought my computer summer 2010, I don't think this should be happening. Please Help......

    This is exactly what keeps happening to mine too.  I was at a conference taking notes, and I was
    using the Notebook template, and doing some audio recording simultaneously.  About 3 hours into the conference (not consistently recording, but on and off with the sessions) my file wouldn't save anymore, saying something like "File cannot be modified while in use with another program" and "Invalid file name" when I would go back into my folder to look for it). I tried installing some updates from Microsoft, and when I restarted, I was at least able to open my old notes again, and so far it looks like the audio was working.  However, today at the conference, the same thing happened again, but I wasn't actively recording any audio (though after I had copy and pasted my second file of notes into the original, I went back to using it after re-naming it). 
    Does the crash happen to you under similar cirucumstances?  The update might help a little, but it is definitely not the solution.  Does anyone have any solutions?  Lion shouldn't be this buggy... I moved to Mac to get away from the garbage of bugs and compatibility issues...

Maybe you are looking for

  • Text in interactive fields before exporting - but wish it to be still editable...

    Hi, in InDesign CC I have a problem with text in interactive text fields. I would like to write text that is editable after exporting interactive pdf. Because I have many formulars with many many text fields, and my clients would like to edit the tex

  • Redeeming gift certificates

    I just recieved a gift certificate through email for the itunes store. But when i go to redeem it, i get a message saying itunes cant be found on my computer, even though its open right in front of me. And everytime i click the "i have itunes" option

  • J2SE vs. J2EE vs. JWSDP

    Hello, I'm trying to figure out the differences between these three packages. Does J2EE contain both J2SE and JWSDP? Is there a detailed list of what each of these contains? Forgive my ignorance. I've been reading a lot of descriptions on the java we

  • Change DBID

    Hi, on 11g R2 I have some manually copied databases. I back up them in nocatalog mode. Then in controlfiles. I heard about DBID and then I looked at documentation that says : Because Recovery Manager (RMAN) distinguishes databases by DBID, you could

  • Cannot creat Invoice based on Delivery

    G'day folks, I have never seen this error before, but I have a Delivery that was copied to (or from) a Sales Order for the remaining balance of items on the Sales Order.  When trying to copy this seemingly correct Delivery to an Invoice, I receive th