home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / mac / hypercar / 3192 < prev    next >
Encoding:
Internet Message Format  |  1992-08-21  |  1.3 KB

  1. Path: sparky!uunet!bcstec!bcsaic!lbaum@atc.boeing.com
  2. From: lbaum@atc.boeing.com (Larry Baum)
  3. Newsgroups: comp.sys.mac.hypercard
  4. Subject: Re: copy/pasting a card--question...
  5. Message-ID: <80965@bcsaic.boeing.com>
  6. Date: 21 Aug 92 17:52:11 GMT
  7. References: <BtB4w8.FJy@usenet.ucs.indiana.edu>
  8. Sender: nntp@bcsaic.boeing.com
  9. Organization: Boeing Computer Services
  10. Lines: 33
  11.  
  12. In article <BtB4w8.FJy@usenet.ucs.indiana.edu> bhostetl@silver.ucs.indiana.edu
  13. (Brian Hostetler) writes:
  14. >
  15. >    Here is a little script:
  16. >on AddCard
  17. >  doMenu Copy Card
  18. >  doMenu Paste Card
  19. >  ask "Please enter the strain name for this card."
  20. >  put it into Card Name:
  21. >end AddCard
  22. >
  23. >    Does anyone know how to get hypercard to copy a specific card from
  24. >anywhere else in the stack?  That is, when a user clicks on the AddCard
  25. >button, I would like the stack to copy a template card located
  26. >elsewhere and place it where the user is.  I guess a round-about way
  27. >of doing it would be for hypercard to take the user *to* the template
  28. >card and copy it and then ask the user to go to where they want it to
  29. >be and then paste it, but...
  30. >    Also, the 'put it into Card Name:' obviously does not work.
  31. >What qualifier am I missing???
  32. >-- 
  33.  
  34. How about:
  35.  
  36. lock screen
  37. push this card
  38. go to card "Template"
  39. doMenu "Copy Card"
  40. pop card
  41. doMenu "Paste Card"
  42. ...
  43.  
  44. set the name of this card to it
  45.