[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [sc-users] Archive questions
On Fri, Dec 02, 2005 at 04:10:20PM +0000, karlos wrote:
> If I do somthing like
>
> r = Archive.new;
> r.write("/path/to/a/location")
>
> an error is thrown.
Archive is just an interface for the global library archive
(write is a class method). but you can write (almost) any
object to a file:
(
var song = (key: 'c#', tempo: 78, quality: \ok);
song.writeArchive("song");
Object.readArchive("song");
)
<sk>