home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 33 / PCPP33.BIN / pcpp / Font.sxt < prev    next >
Encoding:
Text File  |  1998-12-08  |  3.6 KB  |  134 lines

  1. setup_proc:
  2.         install font "verdana.ttf"
  3.  
  4. change_text:
  5.     h_text = get_element "template"
  6.     
  7.     switch selection_number
  8.  
  9.         case 1
  10.             h_text.set("A diagnostic program that analyzes,tests and reports on your system's 3D performance.")
  11.             break    
  12.         case 2
  13.             h_text.set("Easy to use graphics viewer offering both speed and unparalleled image display quality ")
  14.             break
  15.         case 3
  16.             h_text.set("Easily one of the best commercial graphics program available")
  17.             break
  18.         case 4
  19.             h_text.set("One of the best antiviral programs available")
  20.             break
  21.         case 5
  22.             h_text.set("Take a trip down memory lane with this excellent Commodore 64 emulator. Runs only in Dos")
  23.             break
  24.         case 6
  25.             h_text.set("Commercial demo of one of the best music composing progams around")            
  26.             break
  27.         case 7
  28.             h_text.set("this neat utility notifies you when your friends and collegues are online while you surf the internet")
  29.             break
  30.         case 8
  31.             h_text.set("MemTurbo increases your system performance by making more RAM available ")
  32.             break
  33.         case 9
  34.             h_text.set("The best net browser available for surfing the web")
  35.             break
  36.         case 10
  37.             h_text.set("A great personal reminder program - never forget that special occasion again")
  38.             break
  39.         case 11
  40.             h_text.set("One of the best shareware graphics programs available, second only to Photoshop 5.0")
  41.             break
  42.         case 12
  43.             h_text.set("View and sort through all types of files, (such as graphics, html, wavs etc) with great ease")
  44.             break
  45.         case 13
  46.                         h_text.set("A great text editor with almost every feature you could want.")
  47.             break
  48.         case 14
  49.                         h_text.set("Quick and easy program to create special titles, banners and cool 3D effects") 
  50.             break
  51.         case 15
  52.             h_text.set("Easy to use file manager for windows.Great explorer replacement")
  53.             break
  54.         case 16
  55.             h_text.set("The latest release of Winzip serves up serveral new features that make the program even easier to use for managing archives.")
  56.             break
  57.         case 17
  58.             h_text.set("Free trial access to the internet using Telstra Big Pond.")
  59.             break
  60.     return
  61.  
  62. change_text2:
  63.     h_text = get_element "template"
  64.     
  65.     switch selection_number
  66.  
  67.         case 1
  68.             h_text.set("Upgrade your copy of Dune 2000 to v1.03")
  69.             break    
  70.         case 2
  71.             h_text.set("Fixes CD audio problems, tweaks multiplayer modes, and fixes an A3D underwater sound bug")
  72.             break
  73.         case 3
  74.             h_text.set("Upgrades Sin to the latest version. Address a few minor glitches with the game")
  75.             break
  76.         case 4
  77.             h_text.set("The patches fix some problems that have been experienced such as invisible doors appearing on the second level, a few sound glitches on AWE 64 cards, a save game problem and a few minor cosmetic things") 
  78.             break
  79.          return
  80.  
  81.  
  82.     
  83. crazy_text:
  84.     sound_num = ceil (rnd 5)
  85.     debug sound_num
  86.     switch sound_num
  87.         case 1
  88.             display element "sound1"
  89.             break
  90.         case 2
  91.             display element "sound2"
  92.             break
  93.         case 3
  94.             display element "sound3"
  95.             break
  96.         case 4
  97.             display element "sound4"
  98.             break
  99.         case 5
  100.             display element "sound5"
  101.             break
  102.     return
  103.  
  104. crazy_text2:
  105.     sound_num = ceil (rnd 5)
  106.     debug sound_num
  107.     switch sound_num
  108.         case 1
  109.             display element "sound1"
  110.             break
  111.         case 2
  112.             display element "sound2"
  113.             break
  114.         case 3
  115.             display element "sound3"
  116.             break
  117.         case 4
  118.             display element "sound4"
  119.             break
  120.         case 5
  121.             display element "sound5"
  122.             break
  123.     return
  124.  
  125.  
  126. countdown:
  127.    counter = counter - 1
  128.        if counter == 0
  129.            counter = 5 
  130.  
  131. countup:
  132.      counter = counter + 1
  133.        if counter == 6
  134.            counter = 1