home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / sys / mac / hypercar / 3399 < prev    next >
Encoding:
Text File  |  1992-09-09  |  958 b   |  29 lines

  1. Newsgroups: comp.sys.mac.hypercard
  2. Path: sparky!uunet!stanford.edu!leland.Stanford.EDU!jessica.stanford.edu!brod
  3. From: brod@jessica.stanford.edu (Brodie Lockard)
  4. Subject: Re: dumping stack to text
  5. Message-ID: <1992Sep9.200655.284@leland.Stanford.EDU>
  6. Sender: news@leland.Stanford.EDU (Mr News)
  7. Organization: Academic Information Resources
  8. References: <1992Sep8.172222.8769@magnus.acs.ohio-state.edu>
  9. Distribution: usa
  10. Date: Wed, 9 Sep 92 20:06:55 GMT
  11. Lines: 16
  12.  
  13. In article <1992Sep8.172222.8769@magnus.acs.ohio-state.edu> chuff@magnus.acs.ohio-state.edu (Charles T Huff) writes:
  14. >Is there a way to dump the contents of a hypercard stack into
  15. >a form usable by another program?
  16.  
  17. Sure:
  18.  
  19. ask file "Save text where?" with "mytextfile"
  20. if it is not empty then
  21.   open file it
  22.   write fld 1 to file it
  23.   write return&"=================="&return to file it
  24.   write fld 7 of cd "Notes" to file it
  25.   close file it
  26. end if
  27.  
  28. Brodie Lockard      brod@jessica.stanford.edu
  29.