home *** CD-ROM | disk | FTP | other *** search
/ Quick Study Spanish / DISK_1_QSSP.iso / tlc.z / JET.MPS < prev    next >
Text File  |  1997-07-03  |  781b  |  62 lines

  1. ;Warning!  Do not modify this file.
  2. yield on
  3. bids=HGButtonID
  4.  
  5. tlobby=HGLobby
  6. set tlobby Exit goExit
  7. set tlobby Game goGame
  8. set tlobby Travel goTravel
  9. set tlobby Language goLanguage
  10. set tlobby SignIn goSignIn
  11. set tlobby HelpMe goHelp
  12. set tlobby Grammar goGrammar
  13. set tlobby Dictionary goDictionary
  14.  
  15. wait
  16.  
  17. procedure goLanguage
  18. [
  19.   call Language.mps
  20. ]
  21.  
  22. procedure goTravel
  23. [
  24.   call Travel.mps
  25. ]
  26.  
  27. procedure goGame
  28. [
  29.   call Game.mps
  30. ]
  31.  
  32. procedure goDictionary
  33. [
  34.   call Diction.mps
  35. ]
  36.  
  37. procedure goGrammar
  38. [
  39.   call Grammar.mps
  40. ]
  41.  
  42. procedure goSignIn
  43. [
  44.   call signin.mps
  45. ]
  46.  
  47. procedure goHelp
  48. [
  49. ;#define    HELP_LOBY_ROOM            910
  50.   set bids StringID 910
  51.   get bids String hs
  52.   Help hs
  53. ;  Help "The Lobby"
  54. ]
  55.  
  56. procedure goExit
  57. [
  58.   quit
  59. ]
  60.  
  61.  
  62.