home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / sys / mac / hypercar / 4645 < prev    next >
Encoding:
Internet Message Format  |  1992-12-22  |  1.0 KB

  1. Path: sparky!uunet!olivea!mintaka.lcs.mit.edu!lcs.mit.edu!nodine
  2. From: nodine@lcs.mit.edu (Mark H. Nodine)
  3. Newsgroups: comp.sys.mac.hypercard
  4. Subject: Re: Hi-liting a locked field
  5. Message-ID: <1992Dec22.144326.5978@mintaka.lcs.mit.edu>
  6. Date: 22 Dec 92 14:43:26 GMT
  7. References: <babb-161292152533@larc.sdsu.edu>
  8. Sender: news@mintaka.lcs.mit.edu
  9. Organization: MIT Laboratory for Computer Science
  10. Lines: 18
  11.  
  12. In article <babb-161292152533@larc.sdsu.edu>, babb@sciences.sdsu.edu (J. Babb) writes:
  13. |> When I "select cd fld chalkb" from a script, I get marching ants
  14. |> (and the field tool goes active!!), but not selection like hitting the Tab
  15. |> key will give me.
  16. |> Anybody know a workaround or XCMD?
  17.  
  18. HyperCard has very obediently selected the field for you.  Oh,
  19. you wanted to select the _contents_ of the field?  Try this:
  20.  
  21.   select line 1 to 32000 of cd fld chalkb
  22.  
  23. (You can actually compute how many lines to select:
  24.  
  25.   select line 1 to (the number of lines of cd fld chalkb) of cd fld chalkb
  26.  
  27. but the code I gave will work faster.)
  28.  
  29.     --Mark
  30.