home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Sound / MSE / definitions / Test / Tutorial1-F.def < prev   
Encoding:
Text File  |  1996-09-08  |  746 b   |  69 lines

  1. Define Device (
  2.     Manufacturer "Test"
  3.     Device "Tutorial1"
  4.     Channel 1
  5.     Handler MIDI
  6. )
  7.  
  8. Define Font "Font1" (
  9.     Name "Topaz2.font"
  10.     Size 8
  11. )
  12.  
  13. Define Window "Main" (
  14.     Position 10 20
  15.     Size 400 200
  16.     Border
  17. )
  18.  
  19. Define Midi "Notes" (
  20.     Data (
  21.         $90
  22.         Byte 'Note #
  23.         64   'Velocity
  24.     )
  25.     Midi (
  26.         Data (
  27.             0 CHANNEL
  28.         )
  29.     )
  30. )
  31.  
  32. Window "Main" (
  33.     Border (
  34.         Position 10 10
  35.         Size 107 40
  36.         Fill 3
  37.     )
  38.     Text "Plain Text" (
  39.         Position 20 25
  40.     )
  41.     Text "Shadow Text" (
  42.         Position 20 40
  43.         Color 2
  44.         Shadow
  45.     )
  46.  
  47.  
  48.     Text "Note #" (
  49.         Position 167 159
  50.         Color 3
  51.     )
  52.     Gadget "Notes" (
  53.         Position 140 140
  54.         Type Slider (
  55.             Range 36 96
  56.             Size 100 10
  57.             Direction HORIZONTAL
  58.             LevelPlace ABOVE
  59.             Default 63
  60.         )
  61.         Midi "Notes" (
  62.             Data (
  63.                 1 VALUE Byte
  64.             )
  65.             Send
  66.         )
  67.     )
  68. )
  69.