El 12/17/07 12:57 PM, "Chris Cunnington" <[EMAIL PROTECTED]> escribió:

> If I had data in object memory, because I've saved answers from a user into
> objects, then can I file out that information? If I had to send it to
> somebody as an csv file, how could I do that easily?

To Herbert and David advice I add:

You could export any object as

anObject saveOnFile (you could inspect any object and do self saveOnFile
from inside Inspector)

And read again

| inputStream anObject |
inputStream _ FileStream oldFileNamed: 'Preferences.obj'. (I use this for
have Peferences in MinimalMorphic "
anObject _ inputStream fileInObjectAndCode.
inputStream close.

But for this, the original .image and the target .image should be
compatible, for complicated objects like Morphs.

You can't save from 3.10 and read back on 3.9 , as example.

You should play safe with same version Squeak.

Edgar


_______________________________________________
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners

Reply via email to