home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.mac.hypercard
- Path: sparky!uunet!stanford.edu!leland.Stanford.EDU!jessica.stanford.edu!brod
- From: brod@jessica.stanford.edu (Brodie Lockard)
- Subject: Re: dumping stack to text
- Message-ID: <1992Sep9.200655.284@leland.Stanford.EDU>
- Sender: news@leland.Stanford.EDU (Mr News)
- Organization: Academic Information Resources
- References: <1992Sep8.172222.8769@magnus.acs.ohio-state.edu>
- Distribution: usa
- Date: Wed, 9 Sep 92 20:06:55 GMT
- Lines: 16
-
- In article <1992Sep8.172222.8769@magnus.acs.ohio-state.edu> chuff@magnus.acs.ohio-state.edu (Charles T Huff) writes:
- >Is there a way to dump the contents of a hypercard stack into
- >a form usable by another program?
-
- Sure:
-
- ask file "Save text where?" with "mytextfile"
- if it is not empty then
- open file it
- write fld 1 to file it
- write return&"=================="&return to file it
- write fld 7 of cd "Notes" to file it
- close file it
- end if
-
- Brodie Lockard brod@jessica.stanford.edu
-