home *** CD-ROM | disk | FTP | other *** search
/ Amiga Times / AmigaTimes.iso / programme / trionbbs110 / Trion / docs / Utils / MiscGUI.doc < prev    next >
Encoding:
Text File  |  1998-10-06  |  2.7 KB  |  97 lines

  1.  
  2.  
  3.  
  4.    =====( MiscGUI V1.10 )=============================================
  5.  
  6.  
  7.         Trion 'MiscGUI' Utility.
  8.  
  9.         (c) Copyright Paul Spijkerman, '98-'98. All rights reserved.
  10.  
  11.         Written for use with the Trion BBS package.
  12.  
  13.  
  14.    ===================================================================
  15.  
  16.  
  17.     Made a little MiscGui program which produces a window
  18.     with programmable buttons. Like clickit all over again.
  19.     Very usefull for starting shell things or third party
  20.     GUI tools. You can for instance put a node number in a
  21.     button .. and when you click on it it starts a script which
  22.     DeIconizes the node and gives a call command.
  23.  
  24.     The program can be started from the "Misc" button on the
  25.     TrionRM window or by typing MiscGUI in a shell.
  26.  
  27.  
  28.     It uses the "Trion:utils/MiscGui.cfg".
  29.  
  30.     You can use Buttons and text fields which will be arranged
  31.     in a horizontal row. Until it finds a command to tell it
  32.     to go to the next row. 
  33.  
  34.     There are 5 commands.
  35.  
  36.     TEXT         "some text"
  37.     BUTTON       "some text"    "command to be executed"
  38.     NEXTROW
  39.     QUITBUTTON
  40.     NEXTBOX
  41.  
  42.     Text       <- makes a box with text
  43.     Button     <- makes a button
  44.     NextRow    <- sort of a return for a new line of buttons
  45.     QuitButton <- makes a quit button (optional)
  46.     NextBox    <- start a complete new box with buttons (optional)
  47.  
  48.  
  49.     Here is an experimental example, which will produce something like this:
  50.     (Just an example, you can use more rows or buttons)
  51.  
  52.  
  53.     Boss1     14:103/0       Make poll pkt     Make the call
  54.     Boss2     14:103/103     Make poll pkt     Make the call
  55.     Files     Bulkupload     CheckFileBase     Config this
  56.     Misc      KillOldMail    KillOldUsers      Compile menus
  57.     Trim      Trim logs      Trim backup       Trim msgs
  58.  
  59.  
  60.  
  61.  
  62. TEXT     "Boss 1"
  63. TEXT     "14:103/0"
  64. BUTTON   "Make poll pkt"     "Trion:utils/poll 14:103/0"
  65. BUTTON   "Make the call"     "Trion:utils/trion -c -1 14:103/0"
  66.  
  67. NEXTROW
  68.  
  69. TEXT  "Boss 2"
  70. TEXT  "14:103/103"
  71. BUTTON   "Make poll pkt"     "Trion:utils/poll 14:103/103"
  72. BUTTON   "Make the call"     "Trion:utils/trion -c -1 14:103/103"
  73.  
  74. NEXTROW
  75.  
  76. TEXT  "Files"
  77. BUTTON   "Bulkupload"        "Trion:utils/TBulkUpload"
  78. BUTTON   "CheckFileBase"     "Trion:utils/CheckFileBase I >ram:cfb"
  79. BUTTON   "Config this"       "CED Trion:cfg/MiscGui.cfg"
  80.  
  81. NEXTROW
  82.  
  83. TEXT  "Misc."
  84. BUTTON   "KillOldMail"       "Trion:utils/KillOldMail"
  85. BUTTON   "KillOldUsers"      "Trion:utils/KillOldFiles"
  86. BUTTON   "Compile Menus"     "Trion:utils/menu #?"
  87.  
  88. NEXTROW
  89.  
  90. TEXT  "Trim"
  91. BUTTON   "Trim logs"         "Trion:utils/TTrimlogs"
  92. BUTTON   "Trim backup"       "execute Trion:scripts/cbdir"
  93. BUTTON   "Trim msgs"         "execute Trion:scripts/TrimMsgs"
  94.  
  95.  
  96.  
  97.