home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / mac / hypercar / 3125 < prev    next >
Encoding:
Text File  |  1992-08-17  |  1.4 KB  |  40 lines

  1. Newsgroups: comp.sys.mac.hypercard
  2. Path: sparky!uunet!stanford.edu!snorkelwacker.mit.edu!news.media.mit.edu!news.media.mit.edu.!sro
  3. From: sro@media.mit.edu (Shawn O'Donnell)
  4. Subject: Re: Changing Font of Button?
  5. In-Reply-To: jpugh@apple.com's message of Mon, 17 Aug 1992 06:23:22 GMT
  6. Message-ID: <SRO.92Aug17162522@media-lab.media.mit.edu>
  7. Followup-To: comp.sys.mac.hypercard
  8. Sender: news@news.media.mit.edu (USENET News System)
  9. Organization: M.I.T. Media Laboratory
  10. References: <Bt05Mt.GrG@usenet.ucs.indiana.edu> <jpugh-160892231941@90.20.3.200>
  11. Distribution: comp.sys.mac.hypercard
  12. Date: Mon, 17 Aug 1992 21:25:22 GMT
  13. Lines: 25
  14.  
  15. In article <Bt05Mt.GrG@usenet.ucs.indiana.edu>,
  16. bhostetl@silver.ucs.indiana.edu (Brian Hostetler) wrote:
  17. >     Is there any way to change the default button font (chicago)?
  18.  
  19.  
  20. I don't know if you can change the defaults, but you can make it look
  21. as if you did.  I didn't like any of the defaults for buttons, so I
  22. put the following in my Home stack to intercept NewButton messages:
  23.  
  24. on newButton
  25.   set the autohilite of target to true
  26.   set the textfont of target to palatino
  27.   set the textstyle of target to bold
  28.   set the style of target to shadow
  29.   set the showname of target to true
  30. end NewButton
  31.  
  32. Now that I look at it, perhaps I should end with a "pass NewButton".
  33. But it seems to work well without it.  
  34.  
  35. If you don't want the changes to apply as globally as I did, put the
  36. handler lower in the hierarchy.
  37.  
  38. --Shawn
  39.