home *** CD-ROM | disk | FTP | other *** search
/ The Best of the Best / _.img / 01163 / helpex.wdl < prev    next >
Text File  |  1993-02-23  |  2KB  |  66 lines

  1. Window helpEx
  2.   class: HelpEx
  3.   title: "Help Example"
  4.   helpFile: "helpex"
  5.   Menu helpExMenu
  6.     Popup file text: "&File"
  7.       Item fileNew text: "&New"
  8.         id: HELPID_FILE_NEW
  9.         help: "Create a new document"
  10.       Item fileOpen text: "&Open..."
  11.         id: HELPID_FILE_OPEN
  12.         help: "Open an existing document"
  13.       Item fileSave text: "&Save"
  14.         id: HELPID_FILE_SAVE
  15.         help: "Save the current document"
  16.       Item fileSaveAs text: "Save &As..."
  17.         id: HELPID_FILE_SAVE_AS
  18.         help: "Save the current document with a new name"
  19.       Item filePrint text: "&Print"
  20.         id: HELPID_FILE_PRINT
  21.         help: "Print the current document"
  22.       Line
  23.       Item fileExit text: "E&xit"
  24.         id: HELPID_FILE_EXIT
  25.         help: "Close the Help Example window"
  26.     End
  27.     Popup edit text: "&Edit"
  28.       Item editUndo text: "&Undo\tAlt+Bksp"
  29.         id: HELPID_EDIT_UNDO
  30.         help: "Undo the last editing operation"
  31.       Line
  32.       Item editCut text: "Cu&t\tShift+Del"
  33.         id: HELPID_EDIT_CUT
  34.         help: "Cut the selection to the clipboard"
  35.       Item editCopy text: "&Copy\tCtrl+Ins"
  36.         id: HELPID_EDIT_COPY
  37.         help: "Copy the selection to the clipboard"
  38.       Item editPaste text: "&Paste\tShift+Ins"
  39.         id: HELPID_EDIT_PASTE
  40.         help: "Replace the selection with the clipboard contents"
  41.       Item editClear text: "C&lear\tDel"
  42.         id: HELPID_EDIT_CLEAR
  43.         help: "Delete the selection"
  44.     End
  45.     Popup help text: "&Help"
  46.       Item helpIndex text: "&Index"
  47.         help: "Show the main help index"
  48.       Item helpKeyboard text: "&Keyboard"
  49.         help: "Show help on keyboard use"
  50.       Item helpUsing text: "Using &Help"
  51.         help: "Show help on the help system"
  52.       Line
  53.       Item about text: "&About HelpEx..."
  54.         help: "Show an information window about the Help Example"
  55.     End
  56.   End
  57.   Child helpLine
  58.     class: HelpBar
  59.     border: border
  60.     top: (bottom -10)
  61.   Owned aboutBox
  62.     class: MsgBox
  63.     title: "About HelpEx"
  64.     data: "Actor 4.0 Help Example"
  65.     style: (ok)
  66.