home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / sys / mac / hypercar / 4572 < prev    next >
Encoding:
Text File  |  1992-12-15  |  1.4 KB  |  38 lines

  1. Newsgroups: comp.sys.mac.hypercard
  2. Path: sparky!uunet!usc!cs.utexas.edu!uwm.edu!zazen!news
  3. From: demerit@vms.macc.wisc.edu (J. DeMerit)
  4. Subject: Re: Copy Card
  5. Message-ID: <1992Dec15.181348.9564@macc.wisc.edu>
  6. Sender: news@macc.wisc.edu (USENET News System)
  7. Organization:  University of Wisconsin Academic Computing Center
  8. Date: 15 DEC 92 12:06:02    
  9. Lines: 27
  10.  
  11. In article <78261@hydra.gatech.EDU>, wj4@hydra.gatech.edu (Bill Joye) writes...
  12.  
  13. >Problem: I wish to use the 'Copy Card' menu option in
  14. >a script via 'doMenu' with a stack at level 2 (Type).
  15. >Problem is the 'Copy Card' menu option is not available
  16. >until you move to level 3 (Painting).
  17. >Question: Does anyone have any suggestions on how to
  18. >'Copy Card' at level 2. Or do you know a way to disable
  19. >some of the other menu options available at level 3?
  20.  
  21.  
  22. 1. You can change the user level before and after your Copy Card command.
  23.  
  24. 2.  You can delete entire menus or any number of menu items and still remain 
  25. in the higher user level.
  26. Commands such as:  delete menuItem "New Card" from menu "Edit"
  27.               or:  delete menu "Font"
  28.   You use "reset menuBar" to get back to the proper menu for a given user 
  29. level.
  30.  
  31. 3.  You can also disable any menu item (make it grayed out)
  32. Command: disable menu "Edit"
  33.      or:  disable menuItem "Print a Card..." of menu "File"
  34.    The opposite (to turn it back on, i.e. darken it) is enable.  
  35.  
  36. I think this should help.
  37.