[comp.sys.mac.hypercard] Easy way to get ascii?

hemstree@greyrock.mso.colostate.edu (Charles H. Hemstreet IV) (03/14/91)

Is there an easy to dump the contents of a card to an ascii file.
IOW, is there a way to export the data of a card?

Thanks,

Charles

--
!===========================================================================!
! Charles H. Hemstreet IV   ! internet: hemstree@greyrock.MSO.ColoState.Edu !
! Colorado State University !            Computer Consultant                !
!===========================================================================!

dlugose@uncecs.edu (Dan Dlugose) (03/20/91)

In article <HEMSTREE.91Mar13145836@greyrock.greyrock.mso.colostate.edu> hemstree@greyrock.mso.colostate.edu (Charles H. Hemstreet IV) writes:
>
>Is there an easy to dump the contents of a card to an ascii file.
>IOW, is there a way to export the data of a card?
>
open file "f"
repeat with n=1 to number of fields
   write field n to file "f"
end repeat
close file "f"

-- 
Dan Dlugose
Internet: dlugose@uncecs.edu
UNC Educational Computing Service
Box 12035, Research Triangle Park, NC 27709-2035