home *** CD-ROM | disk | FTP | other *** search
/ NEXT Generation: Maxed Out / Next_Generation_Nov_1996_Demo_Disc.iso / pc / media / main.dxr / 00093.ls < prev    next >
Encoding:
Text File  |  1996-09-12  |  377 b   |  14 lines

  1. on mouseUp
  2.   global dbase, banner
  3.   if the text of member "status" = "Press here to launch game." then
  4.     launch(dbase)
  5.     put "Game has been launched.  Please wait." into field "status"
  6.   else
  7.     if objectp(banner) then
  8.       if offset("This is a DOS Game. Press to open window", the sourcestr of banner) > 0 then
  9.         launch(dbase)
  10.       end if
  11.     end if
  12.   end if
  13. end
  14.