Path: utzoo!attcan!uunet!wuarchive!cs.utexas.edu!hellgate.utah.edu!fcom.cc.utah.edu!bioscience.utah.edu!kofoid From: kofoid@bioscience.utah.edu (Eric Kofoid) Newsgroups: comp.sys.mac.hypercard Subject: Re: A couple of questions Message-ID: <1991Jan12.181910.20254@fcom.cc.utah.edu> Date: 12 Jan 91 18:19:10 GMT Sender: news@fcom.cc.utah.edu Organization: Dept. of Biology, University of Utah Lines: 24 References:<1991Jan10.034648.2751@fennel.cc.uwa.oz.au> Neale Hays asks: >> Is there any way to "put" something into the >> message box without it becoming visible? This can be done by applying the 'type' command with the 'blindTyping' property. By restoring the original selection and value of blindTyping, the stack will be left unchanged with the exception of the msg contents. Try it by creating a new button with the following script: on mouseUp ask "Type a message" blindType it end mouseUp on blindType theText put the blindTyping into myTyping put the selectedChunk into mySelection set the blindTyping to true select empty type theText set the blindTyping to myTyping select mySelection end blindType