home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 May / PCWorld_1999-05_cd.bin / NOVINKY / SuperMem / SM98 / SM98.EXE / 0 / RCDATA / THITEDITOR / THITEDITOR.txt
Encoding:
Text File  |  1999-03-17  |  3.4 KB  |  161 lines

  1. object HitEditor: THitEditor
  2.   Left = 404
  3.   Top = 170
  4.   Width = 663
  5.   Height = 366
  6.   ActiveControl = Memo1
  7.   Caption = 'Hit-Area Editor'
  8.   Font.Charset = ANSI_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   ShowHint = True
  14.   OnCreate = FormCreate
  15.   OnShow = FormShow
  16.   PixelsPerInch = 120
  17.   TextHeight = 16
  18.   object Image1: TImage
  19.     Left = 0
  20.     Top = 65
  21.     Width = 655
  22.     Height = 227
  23.     Align = alClient
  24.     OnMouseDown = Image1MouseDown
  25.   end
  26.   object Label1: TLabel
  27.     Left = 0
  28.     Top = 33
  29.     Width = 655
  30.     Height = 32
  31.     Align = alTop
  32.     Alignment = taCenter
  33.     Caption = 
  34.       'Instructions: (1) Choose the editing mode: DragMatch or HitTest,' +
  35.       ' (2) define an area by clicking points, (3) click Copy to copy t' +
  36.       'he coordinates to the clipboard, (4) Close the dialog and (5) pa' +
  37.       'ste the coordinates in ScriptEditor.'
  38.     WordWrap = True
  39.   end
  40.   object Panel1: TPanel
  41.     Left = 0
  42.     Top = 292
  43.     Width = 655
  44.     Height = 36
  45.     Align = alBottom
  46.     BevelInner = bvLowered
  47.     TabOrder = 1
  48.     object ColorPanel: TPanel
  49.       Left = 474
  50.       Top = 4
  51.       Width = 37
  52.       Height = 30
  53.       Hint = 'Color of the hit area border xored with the image'
  54.       BevelInner = bvRaised
  55.       TabOrder = 6
  56.     end
  57.     object Color: TButton
  58.       Left = 510
  59.       Top = 4
  60.       Width = 63
  61.       Height = 30
  62.       Hint = 'Change the color of the hit area polygon'
  63.       Caption = 'C&olor'
  64.       TabOrder = 7
  65.       OnClick = ColorClick
  66.     end
  67.     object Clone: TButton
  68.       Left = 60
  69.       Top = 4
  70.       Width = 60
  71.       Height = 30
  72.       Hint = 'Convert coordinates into a hit area'
  73.       Caption = 'C&lone'
  74.       TabOrder = 1
  75.       OnClick = CloneClick
  76.     end
  77.     object Copy: TButton
  78.       Left = 120
  79.       Top = 4
  80.       Width = 60
  81.       Height = 30
  82.       Hint = 'Copy the hit area coordinates to the clipboard'
  83.       Caption = 'Co&py'
  84.       TabOrder = 2
  85.       OnClick = CopyClick
  86.     end
  87.     object Paste: TButton
  88.       Left = 0
  89.       Top = 4
  90.       Width = 60
  91.       Height = 30
  92.       Hint = 
  93.         'Paste the coordinates from the clipboard (e.g. as taken from an ' +
  94.         'edited script command)'
  95.       Caption = '&Paste'
  96.       TabOrder = 0
  97.       OnClick = PasteClick
  98.     end
  99.     object Clear: TButton
  100.       Left = 180
  101.       Top = 4
  102.       Width = 60
  103.       Height = 30
  104.       Hint = 'Clear the hit area'
  105.       Caption = 'Clea&r'
  106.       TabOrder = 3
  107.       OnClick = ClearClick
  108.     end
  109.     object Close_: TButton
  110.       Left = 240
  111.       Top = 4
  112.       Width = 60
  113.       Height = 30
  114.       Hint = 'Close the hit area editor'
  115.       Cancel = True
  116.       Caption = '&Close'
  117.       ModalResult = 2
  118.       TabOrder = 4
  119.       OnClick = Close_Click
  120.     end
  121.     object ComboBox1: TComboBox
  122.       Left = 306
  123.       Top = 7
  124.       Width = 162
  125.       Height = 24
  126.       Hint = 'Choose the script command for which hit area is being defined'
  127.       ItemHeight = 16
  128.       Items.Strings = (
  129.         'HitTest'
  130.         'DragMatch')
  131.       TabOrder = 5
  132.       Text = 'HitTest'
  133.       OnChange = ComboBox1Change
  134.     end
  135.     object Help: TButton
  136.       Left = 573
  137.       Top = 4
  138.       Width = 75
  139.       Height = 30
  140.       Caption = '&Help'
  141.       TabOrder = 8
  142.       Visible = False
  143.     end
  144.   end
  145.   object Memo1: TMemo
  146.     Left = 0
  147.     Top = 0
  148.     Width = 655
  149.     Height = 33
  150.     Align = alTop
  151.     Lines.Strings = (
  152.       '')
  153.     TabOrder = 0
  154.   end
  155.   object ColorDialog1: TColorDialog
  156.     Ctl3D = True
  157.     Left = 8
  158.     Top = 192
  159.   end
  160. end
  161.