home *** CD-ROM | disk | FTP | other *** search
/ The Mac 13 / the-mac-13.iso / Shareware City / Demos / TextPak Demo / Text Items / Source Code AntiAliased < prev    next >
Encoding:
Text File  |  1994-09-13  |  426 b   |  23 lines  |  [TEXT/MPS ]

  1. {Code}object PreText is TextPak_Glossary
  2.  
  3. has
  4.     OffScreen()
  5.     do
  6.         self.DisplayFile("Pre-AA Text", 50, 50, 540);
  7.         self.show(true);
  8.         self.enable(true);
  9.     end;
  10.     
  11.     MouseDown(theX, theY)
  12.     do
  13.         AfterText.show(true);
  14.         AfterText.enable(true);
  15.     end;
  16.  
  17. with
  18.     omitFlag is false;
  19.     suppressGlossary is true;
  20.     X is 0; Y is 0; Width is 640; Height is 200;
  21.     Duration is -1;
  22. end;
  23.