Yikes!  How to access old Clarisworks documents

Hello-- I've been a teacher for a long time, and on Macs for 11 years. Been using a few of the same Clarisworks documents (late work slips, some rubrics, etc.) happily for quite some time and now they won't open. Didn't purchase iWork. If I get it will they open there? Any other tricks? Places online to convert file formats? I have Microsoft Office, but obviously that does me no good (?)
Help! I'm a little panicky, since the whole reason I bought a Mac was to have access to these files as I switched jobs...
Thanks!

*I have the same problem with our (now rather old) clarisworks drawing files that we still use at our school in new zealand. (i/o error)*
*KOENIG Yvan Suggested the following a while ago to Trick the 6.2.9 version into acting as v6.1. which can then be "updated" with the 6.2.4 updater*
*This worked fine, but the problem is I can't find the 6.2.4 updater anywhere.*
*Does anyone know where I can download the 6.2.4 updater? -thanks!*
Click on the AppleWorks 6.app package while pressing the ctrl key;
In the contextual menu, select "Show package contents"
Open the folder Contents then open the folder MacOS.
select AppleWorks 6 and duplicate it on the desktop.
Open the duplicate with Hexedit
Menu File > Open the other fork (this will open the resource fork)
Search for thr ASCII string
"6.2.9, Copyright Apple Computer, Inc. 1991-2003"
You will find it if you are using the US version or "Z-6.2.9, Copyright Apple Computer, Inc. 1991-2003" if you are using the International version.
About 16 bytes before the string beginning you will see the bytes:
40 06 29 80 .
Edit it as 40 06 21 80.
Edit the two occurences of 6.2.9 to 6.2.1
If you see a string like:
"AppleWorks Updater 6.2.9" or "AppleWorks Updater Z-6.2.9"
edit also 6.2.9 to 6.2.1
Save the edited file.
Move it back in its original folder.
After that, you will be able to apply the 624 or the 627 updater so, you will have an AW 6 able to open your old documents.
Yvan KOENIG

Similar Messages

  • How to access all open documents' ReadImageDocumentDesc?

    Hi everyone,
    I want to get access to the ReadImageDocumentDesc for all currently opened documents from an Export plugin, so I can give users the choice which of the documents to export. Is this possible?
    I expected to have access to all documents via the "next" field of "ReadImageDocumentDesc *documentInfo" in form of a linked list, but that field appears ti be always NULL. Or isn't it for certain types of plugins?
    If it isn't possible, are there other tricks I could use to accomplish my goal? Is a stack renderer plugin an option perhaps?
    Any kind of help is highly appreciated.
    Bernd

    I have the same question. When I write a filter plugin in, I try to access two open pictures to deal with both of them. But I can't find how to utilize the ReadImageDocumentDesc * next to finish it. Is it possible?

  • How to recreate old .indd document into a new one

    Hi there,
    Last year I did a catalogue of sportswear products. It contained about 550 items and each cell-item had about 3 images and 5 textframes. Now I am creating a new catalogue, which should contain about 80% of old items. The images & information according to the product will be just the same. The problem is, that it has to have a completely different look {layout & styling, etc.}.
    I would like to ask for a master-adwice: Do I have to cut & paste 10 000 times the images & textframes from old INDD file to the new one and restyle & resize & repose all afterwards or is there some sophisticated recipe how to use the computing power of my machine and simple tell the program, that all the textfields in old INDD document styled by "Header 01" should be imported to the textframes styled by "NewHeader 01" in the new INDD document? Or something with Named Ranges:
    Old-INDD > Excel > New-INDD?
    I am eager to find the way how to save a week of monkey work of Ctrl+C > V
    Thank you in advance!
    I trust in you gus & thank you for your time in advance!

    If you delete a used paragraph style, InDesign asks you with what it should be replaced. Is that easy enough? :-)
    But you do have to take care to inspect the original style for "based on" features, as well as all other styles that are derived from it.
    Are the style changes so big you cannot get away with re-defining the existing one?
    .. Unfortunately, there is not a similar trick to automatically resize graphics and tables ..

  • How to access old Web sites that exist in iDisk Sites folder

    I have old personal Web sites that still appear to exist on my iDisk, under Home>Sites. But if I can't remember their URL, how do I access them? It seems that if I can see them on iDisk, there ought to be some sort of option to access them or to find the URL. No matter how much I poke around on iDisk, I can't find any way to access these old Web pages. Any idea?
    I can download the parts of the site, and I guess I could re-assemble them, but why bother, if they are already set up and sitting on iDisk?

    Terry Plowman wrote:
    I have old personal Web sites that still appear to exist on my iDisk, under Home>Sites. But if I can't remember their URL, how do I access them? It seems that if I can see them on iDisk, there ought to be some sort of option to access them or to find the URL. No matter how much I poke around on iDisk, I can't find any way to access these old Web pages. Any idea?
    I can download the parts of the site, and I guess I could re-assemble them, but why bother, if they are already set up and sitting on iDisk?
    Try http//web.mac/com/<yourdot_mac_id>/<folder_insites>

  • How to access indesign cs3 document through VC++

    Hello
    i am new to VC++, i need to communiacte Indesign CS3 through VC++, for this what can i do? inorder to access indesign docuemnts,
    i also need to access a Third party API for CS3 through VC++, for the two puproses, i dont have any idea, so
    kindly help me
    with regards,
    ram

    Hi ram<br /><br />As Olav has pointed out, you need to decide whether to use COM or SDK.<br /><br />SDK is hard core - and I really mean HARD CORE. I consider myself to be a reasonably good VC++ programmer, but when I tried to develop an InDesign plug-in using SDK and VC++ I was completely lost.<br /><br />However it is possible to use VC++ to control InDesign via the COM object.<br /><br />Here is what you should do:<br /><br />1) Make a new VC++ project (MFC, MFC Application)<br />2) In Wizard dialog select Dialog Based and leave everything else unchanged (simply press Next)<br />3) You now have a simple empty dialog with 2 buttons<br />4) Double-click the OK button<br />5) Insert the following code (before OnOK()):<br /><br />// COM support required for this<br />//  Call CoInitialize() to initialize the COM library on the current thread<br />if(::CoInitialize(NULL) != S_OK) return;<br /><br />// Create instance of InDesign Application<br />InDesign::_ApplicationPtr app;<br />// Use the appropriate version here<br />//  This string will be used to search the registry for the application<br />//  associated with it and the same is invoked. <br />//  If you have different builds of the same version and you want to work<br />//  with a specific build, call CreateProcess() for that build and then<br />//  call CreateInstance() so that the currently running instance is returned.<br />app.CreateInstance(L"InDesign.Application.CS3");<br /><br />// Open existing document<br />InDesign::DocumentPtr doc = app->Open("C:\\InDesign\\myDocument.indd", true);<br />InDesign::PagePtr page = doc->Pages->FirstItem();<br />InDesign::TextFramePtr textFrame = doc->TextFrames->FirstItem();<br />textFrame->Contents = "Hello world";<br /><br />6) Go to the start of the file<br />7) Insert the following code before // CAboutDlg dialog used for App About<br /><br />// Required for calling COM initialization methods<br />#include <objbase.h><br /><br />// Import InDesign's Type Library<br />#import "C:\Documents and Settings\All Users\Application Data\Adobe\InDesign\Version 5.0\Scripting Support\5.0\Resources for Visual Basic.tlb"<br /><br />8} Build and run the project (F5). When you press OK, InDesign should launch, open your document, find the first page, find the first TextFrame and replace the text (contents) with "Hello world"<br /><br />How to get in contact with your third-party API is a completely different ball game (not in the scope of this forum), but at least you now have a VC++ project with header files etc.<br /><br />If your third-party API is indeed an InDesign plug-in, I totally agree with Olav that you have to direct your questions to the SDK forum.<br /><br />Best regards,<br />Bo

  • Why does iPhoto automatically split into 2 departments & how to access old?

    I downloaded the photos from my laptop to my desktop and when I merged them it forced me to create "iPhoto2" which is where all my new pics go now. However I can only view my old pics as I scroll thru them in the backup drive! Apple is so inventive I'm sure I'm just missing something...help!!

    I placed my file from my laptop over my current photo file to transfer it...probably the problem.
    Yes. Doing that you imported the original, modified, thumbnail and faces image files into your other library. That's not the way to do it.
    If yo have a backup copy of the library on your EHD get it and replace the "combined" one and name it something other than iPhoto Library. Then just drag the library from the laptop to the EHD.
    You won't be able to merger then and keep metadata, faces, places or keywords until iPhoto Library Manager is updated to be compatible with iPhoto 11. That might be sometime next week hopefully.
    If you don't care about the keywords, places, etc you can use iPhotoSync
    iPhotoSync to just copy the photos in your laptop library into the EHD library.
    This is how it would be done:
    1 - open your laptop library.
    2 - using Fast User Switching go to a second user account and use iPhoto to open the library on the EHD.
    3 - now you can use iPS to move the photos from the laptop library into the EHD library. iPhoto will ask you if you want to exclude duplicates so select yes for all dups.
    Remember this method will NOT include keywords, places, etc. an may create multiple Events or just one large Event with all the photos. I'm not sure which.

  • How to access old backup

    Hi, I just migrated from a Macbook Air Mid 2010 to a Macbook Air Mid 2012 thru the backup recovery with time capsule. Using the Mid2012 model how can I access the backup data in time capsule that i had with the Mid2010?

    I took a look at their site, it has no information about the product or product support at all. From what is there it seems that it works on the iPhone itself not on iCloud. But you'll need to seek help from Keep Safe.
    On the App Store this product has 3 reviews, all bad. What made you buy it (every month )
    Good luck.

  • How to read old Appleworks documents

    Greetings,
    I am a former Apple Works user (and Claris works before that).  I have dozens of documents that were created in the "drawing" department of AW which I have discovered to my horror can not be read by Pages.  Seems like the old AW text documents convert just fine.  Anybody out there encounter this?  Any workarounds?
    Thanks,
    Dave B

    Yes, there is a work around. A little search would have pointed you to this thread among others
    Convert AppleWorks 6 Draw files to open and edit in Pages.
    Happy converting!

  • How to access old G5 Beige Tower that won't boot?

    I own a couple of computers, a G5 Beige Tower and some early iMac I believe (come to think of it, now I can't picture what it looks like).
    The G5 won't boot up—I haven't given it a try in years, but I refused to throw it away. I think it shows a flashing question mark inside of a macintosh icon.
    I lugged that thing into an Apple store long ago and they managed to retrieve SOME files (they sure didn't try very hard, imo), so that tells me that I may still be able to access the hard drive, is this correct? Do I only need a boot drive somehow? I'm not sure if I even have one, floppy or CD.
    The second computer was fried in an EMP. Lightning must've struck somewhere nearby (there was a huge storm at the time) and the craziest pulse of energy went through my body, I'll never forget it. It was like exploding in slow-motion, every particle in my body pushing outward, and when it was over, I was fine (shaken), but my computer was dead along with other electronic gizmos. Any opinions on if I should give up on this?
    Would an Apple genius even know what to do if I took that computer in?
    Both are old but may have some files from college that I'd love to recover.

    Hi,
    You mentioned a "G5 Beige Tower". The last beige Macintosh tower computer was a G3 model (http://support.apple.com/kb/sp406). Could it be this one instead?
    If it is the G3 model in the technical specifications above, minimum Mac OS 8.0 would be needed for startup. This could be an appropriate/supported system CD. It could also be the Disk Tools PPC floppy that has been made available for download from Apple (you would then need a working older Mac with a built-in floppy drive and Disk Copy 6.3.3 in order to create a bootable floppy from the disk image):
    http://download.info.apple.com/Apple_Support_Area/Apple_Software_Updates/English -North_American/Macintosh/System/Mac_OS_8.1_Update/Disk_Tools_PPC.img.bin
    http://download.info.apple.com/Apple_Support_Area/Apple_Software_Updates/English -North_American/Macintosh/Utilities/Disk_Copy/Disk_Copy_6.3.3.smi.bin
    A bad logic board battery can sometimes cause startup problems. You may also want to try a PRAM reset:
    http://support.apple.com/kb/ht1379
    Another possibility would be to remove the internal hard drive (the same could be tried with the iMac). An IDE/ATA drive can be connected to an external USB adapter (such as the example below) and then read on a more modern Mac (or even a PC with the correct software).
    http://www.newertech.com/products/usb3_universaldriveadap.php
    If necessary, disassembly guides can be found, for example, at ifixit.com.
    Jan

  • How to access old SRs

    A few months back I submitted an SR related to the CBO and Density checking - I'd like to reference that SR again but I don't have the number and it's not active in Metalink.
    Does anyone know how you can find SRs that were created that are no longer available online.
    Thanks Dick

    Hi,
    Try the following:
    - Login to Metalink (My Oracle Support)
    - Click on "Service Request"
    - Click on the "Search" button
    - Click on "Search with Options"
    - Change "Show SRS with last update" to 365 day(s) -- It is up to 365 days, all SRs which were created before will not be there
    - Click on Find
    Regards,
    Hussein

  • Btrfs issue - how to access old data?

    I made a btrfs volume with mkfs.btrfs.
    The volume was created from 6 offline devices and two online devices. The online devices are the ones that I need the data from (Why can you mkfs.btrfs on an already mounted volume????)
    The computer has been reset.
    If I mount the volume I don't see the data.
    If I fdisk /dev/sdi it shows empty partition table.
    Is there anyway to recover the data?
    Thanks,

    I did something like this: mkfs.btrfs /dev/sdb /dev/sdc /dev/sdd ... /dev/sdk . Where /dev/sdc (ext3) & /dev/sdd (ntfs) were mounted (online). Next reboot - No data.
    fdisk shows no partitions.
    I'd like to recover the data.
    Mounting the (btrfs) volume shows no data.
    I seriously don't understand how you are allowed to mkfs if a volume is mounted...
    edit: What's also frustrating is that it said "resource busy"... So I don't understand where the partition went...
    Last edited by scarletxfi (2012-07-03 14:20:42)

  • How to access old files after wiping your computer and putting the files back on via time machine

    I had recently wiped my computer because it was running to slow. After doing so i put my backup of my computer back on via time machine. However when i try to acces those files i cant find it in the finder. However it still takes up space on my computer and lists it as other now i cant deete any files to free up space on my computer please help!

    Try using disk utility on the hard drive to repair the permissions.

  • Anyone know how to access old forum threads?

    The first link pasted below was supposed to bring up a map (directory tree) to the older forum posts but although it is there, it is a dead end.
    http://h30499.www3.hp.com/t5/Community-Feedback-Suggestions/New-Forum-Locations-by-ITRC-Tree/m-p/480...
    The thread I am trying to find is pasted below this line.
    http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=29638
    Any help anyone can give me would be GREATLY appreciated!!!!!!

    If you are looking for your posts, here is a link to your member information.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Opening old Claris documents on new MacBook

    Hey Gang--
    Lamar Mundane here. You all have been VERY helpful over the past few days as i get up to speed with the modern MAC age.
    My latest question:
    I have old Clarisworks documents on my Performa 5200 (running OS 8.5).
    I ALSO have numerous old AOL saved emails
    How can I import either or both (or anything else for that matter) from my old computer to my new one.
    Thanks in advance for your replies.
    Have a good evening.
    --Lamar Mundane

    Sorry-peggy is on the appleworks-forum mentioned
    above!
    You can connect your Performa via Ethernet to
    transfer files to your Macbook.You will only need a
    straight-through Cat5-Ethernet cable.
    You may look at the Carlson-document
    You can connect only FROM Performa to Macbook if the
    Performa is running OS beyond OS 8.6
    For the Performa-side you may look at
    FileSharing OS 7.x
    Post back if you need more info
    Rainer
    Hi Ranier--
    Thanks for your info...sorry it's been a month since you answered.
    You said I had to be running 8.6 to achieve a transfer.
    I only run 8.5 on the Performa.
    Any thoughts?
    thx
    Lamar

  • How to include old invoices in the invoice list

    How to Include old billing documents in the invoice list.
    TO be more clear:-
    I created 20 invoices in the monthof JAN
    I maintained the factory calender in the payer master in the month of Feb 1st and created 10 more invoices in this month.
    So the system is considering only the invocies which were generated after I maintained the factory calender (Only feb invoices).
    Is there any process to include the previous invoicies (Jan invoices)  also to get include in the invoice list.
    Help me in this regards.
    Regards,
    Mallesh.

    It is not possible.
    Regards,
    Rajesh Banka

Maybe you are looking for