home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / dos / extra / docs / maillist / text / archive.96 / text5532.txt < prev    next >
Encoding:
Text File  |  1996-07-25  |  2.5 KB  |  66 lines

  1.     id m0uBZUJ-0007s7a; Mon, 22 Apr 96 22:14 MDT
  2. Sender: owner-executor
  3. Received: from ardi.com by ftp.ardi.com
  4.     (Smail3.1.29.1 #3) id m0uBZTl-0007s4n; Mon, 22 Apr 96 22:13 MDT
  5. Path: sloth.swcp.com!tesuque.cs.sandia.gov!ferrari.mst6.lanl.gov!newshost.lanl.gov!ncar!csn!news-1.csn.net!magnus.acs.ohio-state.edu!math.ohio-state.edu!uwm.edu!news.cse.psu.edu!news.cc.swarthmore.edu!netnews.upenn.edu!jake.esu.edu!cs!katz
  6. From: katz@cs.millersv.edu (Beth Katz)
  7. Newsgroups: comp.emulators.mac.executor
  8. Subject: Re: Need help: HyperCard 2.1
  9. Date: 22 Apr 1996 18:28:37 GMT
  10. Organization: East Stroudsburg University, Pennsylvania
  11. Lines: 44
  12. Message-ID: <4lgj4l$nl3@jake.esu.edu>
  13. References: <Pine.SOL.3.90.960419135826.21992B-100000@eddie>
  14. NNTP-Posting-Host: cs.millersv.edu
  15. X-Newsreader: TIN [version 1.2 PL2]
  16. To: executor@ardi.com
  17. X-MailNews-Gateway: From newsgroup comp.emulators.mac.executor
  18. Sender: owner-executor@ardi.com
  19. Precedence: bulk
  20.  
  21. Rick Ho (a484howa@cdf.toronto.edu) wrote:
  22. > I need help for using HyperCard 2.1 under E/D 1.99q.
  23.  
  24. > HyperCard script allows Command-Clicking and Option-Clicking, which the 
  25. > script checks for OptionKey or CommandKey when clicking on a button.  I 
  26. > don't know if this is a bug or incompatibility, but it just doesn't work 
  27. > when I click on a button with the Option (Right-Alt) Key depressed.
  28.  
  29. > Can someone please help.
  30.  
  31. > Rick
  32. > rick.ho@utoronto.ca
  33.  
  34. I tried a simple script with HyperCard 2.1 under E/NS 1.99q9. I took
  35. the script from HyperTalk 2.0: The Book by Winkler and Kamins. If I
  36. hold down the option key and am using the browse tool, I can drag
  37. the button. (My Option key is the NeXTstation Alternate key.)
  38.  
  39. Here's the script:
  40. -- lets you drag the button if option key is down
  41. -- from HyperTalk 2.0: the book, by Winkler and Kamins
  42. on mouseDown
  43.   if the optionKey is up then pass mouseDown
  44.   repeat until the mouse is up
  45.     set loc of me to the mouseLoc
  46.   end repeat
  47.   exit to HyperCard -- suppress mouseUp
  48. end mouseDown
  49.  
  50. on mouseUp
  51.   play "boing"
  52. end mouseUp
  53.  
  54. By the way, someone complained earlier about not being able to run
  55. HyperCard. They were trying HyperCard 1.2.1. As far as I know, you
  56. have to use at least HyperCard 2.0. As with other apps, ARDI supports
  57. more recent versions and won't work on getting older versions to run
  58. if a more recent version works. I haven't tried later versions (beyond
  59. HyperCard 2.1) or the Executor 2 Beta.
  60.  
  61. Beth Katz
  62. katz@cs.millersv.edu
  63. http://cs.millersv.edu/~katz
  64.  
  65.  
  66.