Opening all Appleworks documents in Pages

I have LOTS of Applework documents in my system, and actually because of a reinstall I don't even have Appleworks on my new iMac right now. I've made the switch to Pages and really like this program (as well as Numbers). Can I have the computer switch all Applework documents in all locations to Pages with one command, or do I have do this individually file per file. Also, is it a hazard to change all the Appleworks documents at one stroke without looking at each one individually in the face of possibly loosing data to changed fonts or formats, etc. Any comments on this would be helpful. Thanks. ummmmm....I'm thinking already a one sweep change would be problematic because some Applework docuents are actually spreadsheets, even though in Appleworks all spreadsheets and word documents have the same Appleoworks icon.... okay any feedback to my rambling?

Hello
Here is the script:
Save the script as Application or Application bundle on the desktop.
Drag and drop an AppleWorks file's icon on the script's icon.
You will get a dialog describing what it is.
--SCRIPT
on open (sel)
set leFichier to sel's item 1 as alias
set finfos to info for leFichier
set creType to file creator of finfos
set fType to file type of finfos
set vernum to (ASCII number of (read leFichier for 1)) (* read the first byte of the file *)
if creType is not "BOBO" then
display dialog (leFichier as text) & return & return & "isn't an AW document"
else if fType is "CWDB" then
display dialog (leFichier as text) & return & return & "is an AW " & vernum & " DataBase"
else if fType is "CWGR" then
display dialog (leFichier as text) & return & return & "is an AW " & vernum & " DRawing"
else if fType is "CWPT" then
display dialog (leFichier as text) & return & return & "is an AW " & vernum & " PainTing"
else if fType is "CWPR" then
display dialog (leFichier as text) & return & return & "is an AW " & vernum & " PResentation"
else if fType is "CWSS" then
display dialog (leFichier as text) & return & return & "is an AW " & vernum & " SpreadSheet"
else if fType is "CWWP" then
display dialog (leFichier as text) & return & return & "is an AW " & vernum & " WordProcessing"
else
display dialog (leFichier as text) & return & return & "isn't an importable AW document"
end if
end open
--[/SCRIPT]
Yvan KOENIG (from FRANCE jeudi 28 février 2008 23:55:12)

Similar Messages

  • How do you open a .cwk document in pages?

    How do you open a .cwk (the old Apple word processing program) document in Pages?

    If it's an AppleWorks 6 document, Pages 4.3 will open it. It won't open older AppleWorks documents, and Pages 5 won't open those.
    (101294)

  • Will Pages under Lion be able to open old AppleWorks documents in the way that it does under Snow Leopard?

    I've just read a thread  that suggested that Pages will be able to open AppleWorks documents under Lion,  is this correct?
    I understood from discussions last month that one had to convert all  old AppleWorks documents to Pages or Word or some other format BEFORE upgrading to Lion as Pages would not be able to read them afterwards.
    I wanted to pass on a tip that if you have used the AppleWorks password protect on your files, you will not be able to open them in Pages, so you need to open them in AppleWorks first, and take the password off, or save them as a file which is not protected, or some similar work around.

    The Apple Support Community (us) just calmed me right down!  Hi everyone.  I just down loaded Lion through the Apple Apps Store and blindly went ahead and installed it, putting my mental well being in Apple's hands, having trusted Apple since my first Apple II (1974?).  But ... "What do you mean, Appleworks isn't supported?"  In a bit of a panic, wondering what was to happen to my vast (really) stock of AW documents I came to Apple Support for help.  Thanks to the input from Sue, Cornelius, Jonanna and others I took the leap and, clicking on the "OpenApple"-I, accessed the "Open With" switching the AW document to open with Pages. In a word, perfect. And, it looks like Lion has already told itself to open all AW (remember Claris?) documents with Pages.   CM
    ( Except I just spotted a thread titled "AppleWorks doc won't open in Pages" ... Going there next. )

  • Will Lion open Appleworks documents with Pages or Numbers as Snow Leopard does?

    Will Lion open Appleworks documents with Pages or Numbers like Snow Leopard does? Or do I have to convert all my Appleworks files before installing Lion?

    Functionality of Pages and Numbers has little to do with whether it's runnong on Snow Leopard or Lion.  Either way, if they open an AppleWorks document in SL, they'll open it in Lion.  Of course, you have to understand that certain file types - particularly, AppleWorks databases - cannot be opened with anything other than AppleWorks, so you'll need to convert them with AppleWorks before upgrading to Lion.

  • When I open Pages, it opens all previous documents. But I cannot close them:if I try, the program crashes

    Hello everyone.
    Since middle february, Pages has not been working properly.
    When I start the program, it opens by default a blank page. That was fine until recently. I would simply close it and open my desired document. But now I cannot close the blank document: if I do it, the program crashes.
    I have bypassed the problem by simply minimizing the blank one and going along with my own documents... Unfortunately now the problem has increased, as it will not close any document.
    Therefore when I start the program, it will re-open all the documents and it will crash all the time I try to close them.
    Also, It will not let me save them or turn themm to PDF.
    What can I do ?
    I have also removed the previous software and I bought (again) Pages on the App Store last week... results: NONE!! it still won't work.
    HEEEELLLPPPPP
    thank you
    jack

    Hello
    I was warned of your problem by Jerrold.
    As I'm really besy this evening, I didn't read carefully the available message.
    What you get is a Lion's feature named "Resume".
    If you dislike me (as I do but I don't feel useful to rant against it) there are several ways to get rid of it.
    (1) In theory, it's sufficient to uncheck a box in the General System PrefPane.
    I wrote « in theory » because, at least in the French version this feature is broken.
    (2) Some third party tools are delivered to rule the feature's behavior for each application.
    Here are two free ones :
    Lion Tweaks ( http://ifredrik.com/applications/ )
    TinkerTool ( http://www.bresink.com/osx/TinkerTool.html )
    (3) As none of them apply on my French System, I designed a home made brute force tool.
    --{code}
    --[SCRIPT don't resume]
    if my parle_Anglais() then
              display dialog "What to do ?" buttons {"Cancel", "Restart", "Shutdown"} default button 3 cancel button 1
              set |éteindre| to (button returned of result) is "Shutdown"
    else
              display dialog "Que faire ?" buttons {"Annuler", "Redémarrer", "Éteindre"} default button 3 cancel button 1
              set |éteindre| to (button returned of result) is "Éteindre"
    end if
    (path to library folder from user domain as text)
    tell application "System Events"
              delete every folder of folder (result & "Saved Application State")
              if |éteindre| then
      shut down
              else
      restart
              end if
    end tell
    --=====
    on parle_Anglais()
              return (do shell script "defaults read 'Apple Global Domain' AppleLocale") does not start with "fr_"
    end parle_Anglais
    --=====
    --[/SCRIPT]
    --{code}
    Save this script as as Script and store it in the folder :
    <startupVolume>:Users:<yourAccount>:Library:Scripts:
    On my machine, thanks to FastScripts, I attached a shortcut to this script.
    So, when I press cmd +option + ctrl + Q I get this dialog :
    On an English System, the buttons are :
    Cancel, Restart, Shutdown.
    When we trigger the last two, the folder storing the dats required by the system to apply « Resume » is emptied so when we restart the machine no extraneous window is opened.
    I didn't described the way to reach the folder named Scripts.
    I'm sur that Jerrold will do that with a better English.
    Yvan KOENIG (VALLAURIS, France) mardi 17 avril 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Can't open a Word document in Pages '09

    Alright...I have tried to search the forum to see if someone is having the same problem but I haven't seen any. I cannot open a word document in pages. at all. Just says "The document “filename.doc” couldn’t be opened."
    Any suggestions?

    This was one of the first symptoms of "un-updated" Pages in Snow Leopard. Once again, here are the two things you may not have done that fix quite a few problems in Snow Leopard.
    First, use the Mac OS 10.6.3 combo updater. This fixes a problem with the Hoefler Text font that is not fixed using the delta update (10.6.1 > 10.6.2).
    Second, make sure your iWork applications are updated. For iWork '08 that is Pages 3.0.3 & Numbers 1.0.3. For iWork '09 it's Pages 4.0.3 & Numbers 2.0.3. If you're not running the latest versions & Software Update says your software is up to date, make sure the applications are where the installer initially put them. The updaters are very picky. If the location is not where the updater is programmed to look or if the folder doesn't have the name the updater looks for, it will not work. The applications cannot be renamed or moved. They must be in the iWork '08 or iWork '09 folder in Applications. That iWork folder must be named iWork '08 or iWork '09. If it doesn't have the '08 or '09 Software Update won't find them & the updaters won't work.

  • I am trying to open a recent document in Pages. It says I need a newer version of Pages to open it. When I try to install newer versionit says I already have pages and this computer (Mac) and says to go to software update. There is no update being shown.

    I am trying to open a recent document in Pages. It says I need a newer version of pages to open document. When I go to install pages it says I already have on this computer and to check software updates. There are no updates showing. Now what?? I can't open any of my documents.

    you need a newer version of pages to open this document

  • HT202879 how can I open a Word document in Pages 09?

    How can I open a Word document using Pages 09 please? I am trying to open Word documents from a CD using both trying to open in Pages, nd dragging and dropping into the Pages icon in the dock. It tells me, every time, thast the document cannot be opened.

    What happens if you open it in TextEdit or LibreOffice [free]?
    Does it open where you got it from?
    Peter

  • I saved a word file onto my imac.  when i go to open file in documents with pages the file is grey and unable to open.  the workable files are highlighted in bold.  is there a way to open this file????

    i saved a word file onto my imac.  when i go to open file in documents with pages the file is grey and unable to open.  the workable files are highlighted in bold.  is there a way to open this file????

    THis is safe for Mac's? Sorry, I have just never heard of this site before.
    And there are literally tens of thousands of sites of which I've not heard, too. Not this one.
    It's legit. There are lots of links in Apple Support Communities to the LibreOffice web site, as well as others that are legitimate open-source developers of options to buying MS Office, such as NeoOffice and OpenOffice. I have Open Office installed on one of my older Macs that can't run Office 2011 and it is rock-solid.
    I've been here too long to start posting bogus urls now.

  • Opening a Word Document in Pages - floating objects not supported

    I am trying to open a Word document in pages. It is a table of labels with artwork and text. Pages tells me that floating objects inside cells are not supported and were deleted. I've tried making them inline with text in the original document and then opening in Pages, but then I can't make them floating again. Anyone know how to do this? I really don't want to have to buy a Microsoft product!

    Don't buy a M…soft product, use the free openOffice or the free neoOffice.
    Yvan KOENIG (VALLAURIS, France) samedi 18 décembre 2010 18:09:50

  • Why can't I open my pdf document in Pages?

    I want to open a pdf document in Pages, but is will not let me select it. How do I do this?

    You can also drag & drop from the Preview thumbnail to your Pages document.

  • I want to open all pdf documents in full screen initially.

    I want to open all pdf documents in full screen initially.

    With Adobe Acrobat (not Adobe Reader) you can set the initial view of PDF documents.

  • When I open a new document in Pages, the text I type is white on a white background even though the default color is black.  Can someone help?

    When I open a new document in Pages, the text I type appears white instead of the default black color.  I can highlight the text, once I find it, but it will not change to anything other than a light purple.

    Those are the symptoms many users ran into with an early update to Snow Leopard that never was fixed in the updates available through Software Update & not having the iWork apps updated. The problem was not whether or not your system is the current version but how it got there. You must use the combo updater, not the one from Software Update unless it specifically states it is the combo. Software Update will only offer the combo if your system is two or more versions behind. Now that you're running Lion, this generally isn't a problem.
    But making sure the iWork apps are updated is essential. If you're not running the latest versions of the iWork apps installed from a retail box or the downloaded trial & Software Update says your software is up to date, make sure the applications are where the installer initially put them. The updaters are very picky. If the location is not where the updater is programmed to look or if the folder doesn't have the name the updater looks for, it will not work. The applications cannot be renamed or moved. If you installed from the downloaded trial or the retail box, they must be in the iWork '09 folder in Applications. That iWork folder must be named iWork '09. If it doesn't have the '09 Software Update won't find them & the updaters won't work.

  • Just installed Lion and now my Word, Excel and Powerpoint no longer work. What can I do to open all old documents?

    I just installed Lion to my Powerbook that I purchased in October 2010. My Microsoft Word documents no longer open and my Mac version of Word, Excel and Powerpoint no longer work. What can I do to open all old documents?

    Upgrade to Office 2011. 
    You must be running Office 2004, which was designed to run on PowerPC Macs.
    PowerPC apps would run via "Rosetta" on Snow Leopard, but with Lion, Apple has finally pulled the plug on PowerPC apps.

  • TS1702 All my documents in Pages for iPad 2 will not open.

    All my documents show the first page of the User Guide. If I clicked on any of them, they would not open, except for the User Guide itself.
    I have deleted the App and reinstalled it. All documents have gone, but i still have them on iTunes and iPhone.
    In the new app which only shows the User Guide, it will not create a new document. Also the documents have not been reinstated from iCloud.
    Help please. Would dearly like to get this sorted.

    Sounds to me like you may have an issue with the firmware, i.e. the iOS version that you are runing.  I also have an iPad 2  and sometimes have to restart it to get it to recognize and run a newly downloaded app.  And only once or twice have I had to uninstall and redownload an app that this didn't fix. I think this has more to do with the way an app has been coded more than anything else.
    You might try doing a "Reset All Settings" reset and set it up as a new iPad.  You should not lose any data, apps, music, videos, etc. that you have stored on your device.  I have done this a few times when tweaking the iOS 5.0.1 firmware and never lost anything.  You do have to re-enter your ID's and Passwords for wifi.  And of course you will need to go back into settings and reset any changes you may have made to things like location and notifications.
    I don't know if this will work, but if I was in your place this is the next step that I would take.

Maybe you are looking for

  • How to save a variant in MMRV

    Hi, We are planning to execute "Allow posting to previous period" and "Disallow backposting generally" in MMRV on separate dates via Schedule Manager. However, there seems to be no way we can save a variant in MMRV. Can you please tell us how?

  • Has anyone had a problem (unstable

    Had a problem with my ipad 2 this week end. As soon as i entered my password, my ipad became very unstable and unresponsive as if someone/something took over it. Could this have occured because of the new operating system IOS 5?

  • Not Bound Error

    Hi, I have created a custom component (Z). To that, I have added a model context node IBTEST having underlying BOL entity as IBHeader and containing attribue STATUS. I have added the attribute STATUS to the view using UI configurator. Now when I try

  • Can't open idvd

    when I try to open idvd I get a message can't find file /applications/imovie hd.imovie project/shared movies/idvd/moviehd.mov audio /applications/imovie hd.imovie project/shared movies/idvd/moviehd.mov video my movie is all set to go but I can't burn

  • One omre QUS in smartform

    i want to include check box  so the end user can   mark  person  male or female