home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Holiday Catalog 1996 / EB1996Holiday.iso / a3w_data / display2.scr < prev    next >
Text File  |  1996-01-17  |  9KB  |  222 lines

  1. # This is the sample display script for Expedite Base/Win.
  2. # It is used when a bitmap is displayed instead of the normal picture.
  3. # If we are drawing the default picture, add some text to it.
  4. #
  5. PICTURE CLEARSCREEN(Y);
  6. #
  7. # This is the first text we display.  If you are not displaying the picture,
  8. # you may want to clear the display status rows 15 to 24 first.
  9. # If Picture is off, a bitmap may be displayed, so clear screen
  10. FIRST  CLEARSCREEN(Y) ;
  11. FIRST  TEXT(Expedite Base, for Windows Version %VERSION%) ROW(23) COLUMN(39) FOREGROUND(BRIGHT_WHITE);
  12. FIRST  TEXT(Ctrl+x - Exit) ROW(23) COLUMN(19);
  13. FIRST  TEXT(Network Account:   %INACCOUNT% %INUSERID%) ROW(16) COLUMN(42);
  14. #FIRST  TOPLEFTROW(15) TOPLEFTCOL(1) BOTRIGHTROW(24) BOTRIGHTCOL(80)
  15. #     FOREGROUND(LIGHT_BLUE);
  16.  
  17. #
  18. # When we start processing the connect script, show the phone number
  19. # and the dialing message.  Clear line 21 in case there was some other
  20. # message there, if we are on a redial.
  21. #
  22. DIALING  TEXT(Ctrl+r - Redial) ROW(23) COLUMN(2);
  23. DIALING  CLEARLENGTH(32) ROW(21) COLUMN(2);
  24. DIALING  TEXT(Dialing the Network             ) ROW(20) COLUMN(2);
  25. DIALING  TEXT(Phone number: %PHONE%  ) ROW(17) COLUMN(42);
  26. #
  27. # For non-dial connections, use the CONNECTING instead of DIALING
  28. #
  29. CONNECTING TEXT(Connecting to the Network       ) ROW(20) COLUMN(2);
  30. #
  31. # Clear the manual dial message and show the successful connection message.
  32. # For asyn, if the GetValue command is used in the connect script to get
  33. # the baud rate from the connect message, then this baud rate will be
  34. # displayed. Otherwise, the profile baud rate is displayed.
  35. #
  36. CONNECTED  CLEARLENGTH(39) ROW(18) COLUMN(2);
  37. CONNECTED  TEXT(Successful %CNNCTYPE% Connection     ) ROW(20) COLUMN(2);
  38. #
  39. # When the welcome message is received, show the terminal ID and the
  40. #    Information Network Customer Assistance phone number.
  41. #
  42. WELCOMEMSG  TEXT(Termid: %TERMID%) ROW(16) COLUMN(2);
  43. WELCOMEMSG  TEXT(Customer Assistance: %HOTLINE%) ROW(17) COLUMN(2);
  44. #
  45. # When we get logged on to the Network, display the successful logon
  46. # message. Take the 'redial key' off the screen
  47. #
  48. INLOGON  TEXT(Successful Network logon        ) ROW(20) COLUMN(2);
  49. INLOGON  CLEARLENGTH(15) ROW(23) COLUMN(2) ;
  50. #
  51. # When we do a session start with IE, show the IE account and userid.
  52. # Show a message to the user that we're starting a session.
  53. # Show the bytes sent and received and the file counter titles.
  54. #
  55. START TEXT(Info Exch Account: %IEACCOUNT% %IEUSERID%) ROW(17) COLUMN(42);
  56. START TEXT(Started session with Info Exch  ) ROW(20) COLUMN(2);
  57. START TOPLEFTROW(18) TOPLEFTCOL(42) BOTRIGHTROW(22) BOTRIGHTCOL(78)
  58.       FOREGROUND(BLUE);
  59. START TEXT(SENT      RECEIVED) ROW(19) COLUMN(55);
  60. START TEXT(BYTES) ROW(20) COLUMN(44);
  61. START TEXT(FILES) ROW(21) COLUMN(44);
  62. #
  63. # When a file is sent or received, show the file name and user class.
  64. # Show the bytes sent and received and the file counters.
  65. # Filenames are 14 characters, class is 8 characters.
  66. #
  67. SEND       TEXT(Sending file:    %FILENAME%   ) ROW(20) COLUMN(2);
  68. SEND       TEXT(Class/File Size: %CLASS% %FILESIZE%) ROW(21) COLUMN(2);
  69. #
  70. RECEIVE    TEXT(Receiving file: %FILENAME%    ) ROW(20) COLUMN(2);
  71. RECEIVE    TEXT(Class:          %CLASS%            ) ROW(21) COLUMN(2);
  72. #
  73. SENDEDI    TEXT(Sending EDI file: %FILENAME%  ) ROW(20) COLUMN(2);
  74. SENDEDI    TEXT(Class:            %CLASS%) ROW(21) COLUMN(2);
  75. #
  76. RECEIVEEDI TEXT(Receiving EDI file: %FILENAME%) ROW(20) COLUMN(2);
  77. RECEIVEEDI TEXT(Class:              %CLASS%   ) ROW(21) COLUMN(2);
  78. #
  79. # Show number of characters sent and number of characters received
  80. # below the titles.
  81. #
  82. CHARSSNT TEXT(%CHARSSNTCNT%) ROW(20) COLUMN(55);
  83. CHARSRCVD TEXT(%CHARSRCVDCNT%) ROW(20) COLUMN(65);
  84. #
  85. # Show files sent and files received below the titles.
  86. #
  87. FILESSNT  TEXT(%FILESSNTCNT%) ROW(21) COLUMN(55);
  88. FILESRCVD TEXT(%FILESRCVDCNT%) ROW(21) COLUMN(65);
  89. #
  90. # As we end the IE session, show the end of session message.
  91. # Clear the status box first.
  92. #
  93. END CLEARLENGTH(77) ROW(18) COLUMN(2);
  94. END CLEARLENGTH(77) ROW(19) COLUMN(2);
  95. END CLEARLENGTH(77) ROW(20) COLUMN(2);
  96. END CLEARLENGTH(77) ROW(21) COLUMN(2);
  97. END CLEARLENGTH(77) ROW(22) COLUMN(2);
  98. END TEXT(Ending Info Exch Session     ) ROW(20) COLUMN(2);
  99. #
  100. # At disconnect time, clear the display lines 16 to 22 and show the
  101. # disconnect message.  Leave the Network account/userid on the screen.
  102. #
  103. DISCONNECT  CLEARLENGTH(36) ROW(16) COLUMN(2);
  104. DISCONNECT  CLEARLENGTH(77) ROW(17) COLUMN(2);
  105. DISCONNECT  CLEARLENGTH(77) ROW(18) COLUMN(2);
  106. DISCONNECT  CLEARLENGTH(77) ROW(19) COLUMN(2);
  107. DISCONNECT  CLEARLENGTH(77) ROW(20) COLUMN(2);
  108. DISCONNECT  CLEARLENGTH(77) ROW(21) COLUMN(2);
  109. DISCONNECT  CLEARLENGTH(77) ROW(22) COLUMN(2);
  110. DISCONNECT  TEXT(Disconnecting                     ) ROW(20) COLUMN(2);
  111. #
  112. # If the user presses the exit key, show the session terminated message.
  113. # Clear the display from row 16 to 23.
  114. #
  115. EXIT  CLEARLENGTH(77) ROW(16) COLUMN(2);
  116. EXIT  CLEARLENGTH(77) ROW(17) COLUMN(2);
  117. EXIT  CLEARLENGTH(77) ROW(18) COLUMN(2);
  118. EXIT  CLEARLENGTH(77) ROW(19) COLUMN(2);
  119. EXIT  CLEARLENGTH(77) ROW(20) COLUMN(2);
  120. EXIT  CLEARLENGTH(77) ROW(21) COLUMN(2);
  121. EXIT  CLEARLENGTH(77) ROW(22) COLUMN(2);
  122. EXIT  CLEARLENGTH(77) ROW(23) COLUMN(2);
  123. EXIT  TEXT(Terminating Session           ) ROW(20) COLUMN(2);
  124. #
  125. # At the end of the session, clear display lines 16 to 23 and
  126. # show the final return code and message.
  127. #
  128. LAST  CLEARLENGTH(77) ROW(16) COLUMN(2);
  129. LAST  CLEARLENGTH(77) ROW(17) COLUMN(2);
  130. LAST  CLEARLENGTH(77) ROW(18) COLUMN(2);
  131. LAST  CLEARLENGTH(77) ROW(19) COLUMN(2);
  132. LAST  CLEARLENGTH(77) ROW(20) COLUMN(2);
  133. LAST  CLEARLENGTH(77) ROW(21) COLUMN(2);
  134. LAST  CLEARLENGTH(77) ROW(22) COLUMN(2);
  135. LAST  CLEARLENGTH(77) ROW(23) COLUMN(2);
  136. LAST  TEXT(Final Return Code %RETURNCODE%       ) ROW(21) COLUMN(2);
  137. LAST  TEXT(%MESSAGE%) ROW(23) COLUMN(2);
  138. LAST  CLEARSCREEN(Y) WAIT(3);
  139. #
  140. # If we are restarting a session, tell the user.
  141. #
  142. RESTART  CLEARLENGTH(32) ROW(21) COLUMN(2);
  143. RESTART  TEXT(Restarting previous session         ) ROW(20) COLUMN(2);
  144. #
  145. # If we lose carrier, tell the user.  (NEW event)
  146. #
  147. LOSTCONNECT  CLEARLENGTH(32) ROW(21) COLUMN(2);
  148. LOSTCONNECT TEXT(Lost carrier                     )  ROW(20) COLUMN(2);
  149. #
  150. # If we are using cycle/wait, show waiting to redial message.
  151. #
  152. DIALCYCLE   TEXT(Waiting to redial %DIALTIME%     ) ROW(20) COLUMN(2);
  153. DIALCYCLE   TEXT(Time now:         %TIMENOW%      ) ROW(21) COLUMN(2);
  154. #
  155. #  Show time now and time to dial.
  156. #
  157. DELAYSESS  TEXT(Time now:  %TIMENOW%  %DATE%  ) ROW(20) COLUMN(4);
  158. DELAYSESS  TEXT(Dial time: %DELAYTIME%        ) ROW(21) COLUMN(4);
  159. #
  160. # If we are doing manual dial, tell the user to establish the connection.
  161. #
  162. MANUALDIAL  CLEARLENGTH(15) ROW(23) COLUMN(2) ;
  163. MANUALDIAL  CLEARLENGTH(32) ROW(17) COLUMN(42) ;
  164. MANUALDIAL  TEXT(Please Establish Dial Connection) ROW(18) COLUMN(2);
  165. #
  166. # If we put member into a library, show the library and member
  167. # names.
  168. #
  169. PUTMEMBER TEXT(Updating Library:   %LIBRARY%   ) ROW(20) COLUMN(2);
  170. PUTMEMBER TEXT(Member name:        %MEMBER%    ) ROW(21) COLUMN(2);
  171. #
  172. # If we request a member from a library, show the library and member
  173. # names.
  174. #
  175. GETMEMBER TEXT(Requesting:   %MEMBER%          ) ROW(20) COLUMN(2);
  176. GETMEMBER TEXT(From Library: %LIBRARY%         ) ROW(21) COLUMN(2);
  177. #
  178. # If we are listing libraries, tell the user.
  179. #
  180. LISTLIBRARIES CLEARLENGTH(32) ROW(21) COLUMN(2);
  181. LISTLIBRARIES TEXT(Listing libraries on IE         ) ROW(20) COLUMN(2);
  182. #
  183. # If we are listing a library's members, show the library name.
  184. #
  185. LISTMEMBERS TEXT(Listing members from this       ) ROW(20) COLUMN(2);
  186. LISTMEMBERS TEXT(IE library:  %LIBRARY%           ) ROW(21) COLUMN(2);
  187. #
  188. # If we do a query, tell the user.
  189. #
  190. QUERY CLEARLENGTH(32) ROW(21) COLUMN(2);
  191. QUERY   TEXT(Checking the mailbox            ) ROW(20) COLUMN(2);
  192. #
  193. # If we are purging a message from the mailbox, tell the user.
  194. #
  195. PURGE CLEARLENGTH(32) ROW(21) COLUMN(2);
  196. PURGE TEXT(Purging message from the mailbox) ROW(20) COLUMN(2);
  197. #
  198. # If we define an alias table show the name of the table.
  199. #
  200. DEFINEALIAS TEXT(Working with alias table        ) ROW(20) COLUMN(2);
  201. DEFINEALIAS TEXT(Table name: %ALIASTABLE%                ) ROW(21) COLUMN(2);
  202. #
  203. # If we move a file from archive, show the ARCHIVEID.
  204. #
  205. ARCHIVEMOVE  TEXT(Requesting file from archive    )      ROW(20) COLUMN(2);
  206. ARCHIVEMOVE  TEXT(Archive ID:  %ARCHIVEID%           )  ROW(21) COLUMN(2);
  207. #
  208. # If we define a list, show the LISTNAME.
  209. #
  210. LIST  CLEARLENGTH(32) ROW(21) COLUMN(2);
  211. LIST  TEXT(Defining list %LISTNAME%           ) ROW(20) COLUMN(2);
  212. #
  213. # If we request an audit, tell the user.
  214. #
  215. AUDIT  CLEARLENGTH(32) ROW(21) COLUMN(2);
  216. AUDIT  TEXT(Requesting audit               ) ROW(20) COLUMN(2);
  217. #
  218. # If we cancel a file, show the user's account/userid.
  219. #
  220. CANCEL TEXT(Cancelling  file sent to:        ) ROW(20) COLUMN(2);
  221. CANCEL TEXT(%CANCELDEST%           )  ROW(21) COLUMN(2);
  222.