home *** CD-ROM | disk | FTP | other *** search
/ AMOS PD CD / amospdcd.iso / sourcecode / various / set_up.amos / set_up.amosSourceCode
AMOS Source Code  |  1993-01-08  |  352b  |  9 lines

  1. ' Set Up procedure V1.2  
  2. ' This procedure will set up the screen for defining Buttons.
  3. ' Use in conjunction with proc's  Draw,Push and or Arrows
  4. ' See example "Examples/Set up,Draw,Push.Amos" 
  5. Procedure SET_UP
  6.    'Written by Brett George 
  7.    Screen Open 0,640,256,16,Hires : Curs Off : Flash Off 
  8.    Palette 0,$888,$777,$BBB,$444,$AAA : Cls 1
  9. End Proc