home *** CD-ROM | disk | FTP | other *** search
/ Knowledge Land / KNOWLEDGELA.ISO / pc / support / mac / ace / demos / twdemo / demo / start.ace next >
Encoding:
Text File  |  1996-09-12  |  2.2 KB  |  61 lines

  1. // START.ACE
  2. // Jumpstart Toddlers' entry point.
  3. //
  4. // Written by: Danny Hendargo
  5. //
  6. // $Log: start.ace $
  7. // Revision 1.5  1996/02/07 15:53:13  DANNY
  8. // Set the window icon to toddler.cmp.
  9. // Revision 1.4  1996/01/24 18:37:44  DANNY
  10. // Turn kidClicking on from script. Move "set sectionName" to the first command.
  11. // Revision 1.3  1996/01/22 14:02:41  DANNY
  12. // Use all 4 audio channels.
  13. // Revision 1.2  1996/01/16 12:12:16  DANNY
  14. // Set sectionName right in the beginning.
  15. // Revision 1.1  1996/01/05 15:05:02  DANNY
  16. // Tribrid Build 1.
  17. // ---------------------------------------------------------------------------
  18.  
  19. //
  20. // If we want to set border color for screen larger than 640x480,
  21. // ini file's [TODDLER] should have kidProof=YES and borderColor=r,g,b.
  22. // Also, "-iniSect TODDLER" (and "-iniFile xxxxxxxx.ini", depending on
  23. // the implementation) should be included in the command line.
  24. //
  25. Set currentIniSection's sectionName to "TODDLER". // not early enough to set borderColor
  26.  
  27. Set the window icon to toddler.cmp.               // mainly for win 3.1
  28.  
  29. //
  30. // On MAC, the border color is black and not changeable.
  31. // On Windows 3.11, the default border is the closest
  32. // On Windows, the border color is white by default.
  33. //    If run from AUTORUN, it is close to AUTORUN.INI's borderColor.
  34. //    If run from TODDLER, it is close to KA.INI's [TODDLER]'s borderColor.
  35. //    By "close" I mean: the engine will pick from Windows system colors
  36. //    the color with RGB value closest to borderColor specified.
  37. //
  38. Turn kidProofing on. // no effect if kidProofing is turned on from inifile.
  39.  
  40. //
  41. // On MAC, which has 2 channels, this uses additional 68K of memory.
  42. // 4 (or at least 3) channels is needed by the kinetic module.
  43. //
  44. Set the number of sound channels to 4. // no effect on windows
  45.  
  46. In system,
  47.     Make _fullVersion.  // not stand-alone
  48.  
  49. Refer to bone\bomain.ace.
  50. //Refer to story\stmain.ACE.
  51. //Refer to abc\abmain.ace.
  52. //Refer to peek\pemain.ace.
  53. //Refer to music\mumain.ace.
  54. //Refer to 123\numain.ace.
  55. //Refer to kinetic\kimain.ace.
  56.  
  57. Include main.ace.
  58.  
  59. //////////////////////////////////////////////////////////////////////////////
  60.  
  61.