home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 November / Pcwk1197.iso / LOTUS / Eng-ins / WORDPRO / MACTOKEN.SAM (.txt) < prev    next >
Encoding:
Ami Pro/Word Pro document  |  1996-04-01  |  34.7 KB  |  850 lines

  1. [ver]
  2. [sty]
  3. [files]
  4. [charset]
  5.     ANSI (Windows, IBM CP 1252)
  6. [revisions]
  7. [recfile]
  8. [prn]
  9.     PCL / HP LaserJet
  10. [port]
  11.     LPT2:
  12. [lang]
  13. [fldnames]
  14.     Field1
  15.     Field2
  16.     Field3
  17.     Field4
  18.     Field5
  19.     Field6
  20.     Field7
  21.     Field8
  22. [desc]
  23.     800566776
  24.     611692490
  25. [fopts]
  26. [lnopts]
  27.     Body Text
  28. [docopts]
  29. [GramStyle]
  30. [tag]
  31.     Body Text
  32.     [fnt]
  33.         Tms Rmn
  34.         240
  35.         49152
  36.     [algn]
  37.     [spc]
  38.         100
  39.     [brk]
  40.     [line]
  41.     [spec]
  42.     [nfmt]
  43.         280
  44.     Body Text
  45. [lay]
  46.     Standard
  47.     [rght]
  48.         15840
  49.         12240
  50.         1440
  51.         1440
  52.         1440
  53.         1440
  54.         1440
  55.         10800
  56.     [hrght]
  57.     [lyfrm]
  58.         11200
  59.         12240
  60.         1440
  61.         1 0 0 0 0 0 0
  62.     [frmlay]
  63.         1440
  64.         12240
  65.         1440
  66.         1440
  67.         1440
  68.         10800
  69.     [txt]
  70.     [frght]
  71.     [lyfrm]
  72.         13248
  73.         14400
  74.         12240
  75.         15840
  76.         1 0 0 0 0 0 0
  77.     [frmlay]
  78.         15840
  79.         12240
  80.         1440
  81.         14400
  82.         1440
  83.         1440
  84.         10800
  85.     [txt]
  86. [elay]
  87. [edoc]
  88. token|type class parmcnt wparam retval
  89. GOTO|102 1
  90. IF|102 2    ~ IF condition expression [ELSEIF condition express] [ELSE express] ENDIF  <IF Sales > 1000 "Great Job" ELSE "Keep up the good work" ENDIF>
  91. ELSEIF|102 3
  92. ELSE|102 4
  93. ENDIF|102 5
  94. RETURN|102 6
  95. FOR|102 7
  96. NEXT|102 8
  97. WHILE|102 9
  98. WEND|102 10
  99. SWITCH|102 11
  100. CASE|102 12
  101. DEFAULT|102 13
  102. ENDSWITCH|102 14
  103. BREAK|102 15
  104. FUNCTION|102 16
  105. Call|102 18        ~ Call filename[!macro](parameters) - Runs a macro.  <Call ansi.smm!insertchar()>
  106. ONCANCEL|102 19
  107. ONERROR|102 20
  108. DIM|102 21
  109. DEFSTR|102 22
  110. TO|102 23
  111. STEP|102 24
  112. DECLARE|102 25
  113. THEN|102 26
  114. CALLI|102 28
  115. DIALOG|102 29
  116. ENDDIALOG|102 30
  117. ALIAS|102 31
  118. DEFINE|102 32
  119. AND|110 1
  120. OR|110 2
  121. NOT|110 3
  122. ;two parters|123 type
  123. END|123 1
  124. EXIT|123 2
  125. ;fields|125 number
  126. Bookmark|125 0 ~3Bookmark - Insert the text marked by the bookmark.  <totalsales>, <LastName>
  127. Set|125 1    ~ Set GlobalVariable Expression - Sets GlobalVariable to expression.  <Set totol total + subtotal>, <Set title "President">
  128. Seq|125 2    ~2Seq SequenceName[=[exp]][-[exp]][+exp] - Custom sequencing.  <Seq Figure>, <Seq Table=5>, <Seq Figure+2 %N2>
  129. PageRef|125 3    ~3PageRef BookmarkName - Returns the page where the specified bookmark resides.  <Pageref Chapter5>
  130. NextRec|125 4    ~ NextRec - Advance to the next record while merging, eg: allows multiple records on the same page.  <NextRec>
  131. Skip|125 5    ~ Skip - While merging, this field will not print the current record, but skips to the next.  <IF country != "USA" Skip ENDIF>
  132. CreateDate|125 7    ~1CreateDate - The creation date or time of the current document.  <CreateDate %Db>, <CreateDate %T6>
  133. EditDate|125 8    ~1EditDate - The date or time the current document was last saved.  <EditDate %Db>, <EditDate %T6>
  134. NumEdits|125 9    ~ NumEdits - Returns the number of times the current file was saved.  <"Version 1.{NumEdits}">
  135. TotalEditingTime|125 10    ~ TotalEditingTime - The accumulated edit time (in minutes).  <Set Cost Rate * TotalEditingTime>
  136. NumPages|125 11    ~ NumPages - Returns the total number of pages in this document.  <"Page {getpageno()} of {NumPages}">
  137. NumWords|125 12    ~ NumWords - Returns the total number of words in this document.  <NumWords>
  138. NumChars|125 13    ~ NumChars - Returns the total number of characters in this document.  <NumChars>
  139. FileSize|125 14    ~ FileSize - The size of the current document (in thousands of bytes).  <FileSize>
  140. MergeRec|125 16 ~ MergeRec - The current record number when merging.  <IF MergeRec = 1 set total subtotal ELSE set total total + subtotal ENDIF>
  141. Include|125 17 ~ Include filename[!bookmark] - Inserts an entire file or a bookmark from another file.  <Include "Standard.sam!Greeting">
  142. Defined|125 18 ~ Defined Variable - Check to see if the given variable is defined.  <IF Defined totalpages totalpages ELSE "?" ENDIF>
  143. PrintEscape|125 19 ~ PrintEscape "Escape codes" - Sends Escape codes directly to the printer.  <PrintEscape "[27]&&l2H">, <PrintEscape "[0x1b]&&l30">
  144. Index|125 20 ~ Index "Primary" [#] ["Secondary"] ["other"] - Mark for index, same as Text/Mark Text As/Index Entry...
  145. Void|125 21 ~ Void expression - This function nullifies the return value from field.  <Void Exec("clock.exe", "", 2)>
  146. User|125 22 ~ User Anything - Returns nothing but gives the macro programmer a way to mark a location.  <User 1,Something>
  147. Description|125 23 ~ Description - Doc Info description from the current document. <Description>
  148. DivisionName|125 27 ~ DivisionName - Name of the current division. <DivisionName>
  149. SectionName|125 28 ~ SecionName - Name of the current section. <SectionName>
  150. UserName|125 30 ~ UserName - Name of the current user. <UserName>
  151. Initials|125 31 ~ Initials - Initials of the current user. <Initials>
  152. Title|125 32 ~ Title - Title of the current user. <Title>
  153. Company|125 33 ~ Company - Company of the current user. <Company>
  154. Address1|125 34 ~ Address1 - Address1 of the current user. <Address1>
  155. Address2|125 35 ~ Address2 - Address2 of the current user. <Address2>
  156. Address3|125 36 ~ Address3 - City and State of the current user. <Address3>
  157. PostalCode|125 37 ~ PostalCode - PostalCode of the current user. <PostalCode>
  158. PhoneNumber|125 38 ~ Phone - Phone Number of the current user. <PhoneNumber>
  159. FaxNumber|125 39 ~ FaxNumber - Fax number of the current user. <FaxNumber>
  160. Email|125 40 ~ Email - Email address of the current user. <Email>
  161. PersonalData1|125 41 ~ PersonalData1 - Personal Data1 of the current user. <PersonalData1>
  162. PersonalData2|125 42 ~ PersonalData2 - Personal Data2 of the current user. <PersonalData2>
  163. PersonalData3|125 43 ~ PersonalData3 - Personal Data3 of the current user. <PersonalData3>
  164. PersonalData4|125 44 ~ PersonalData4 - Personal Data4 of the current user. <PersonalData4>
  165. ParaRef|125 45    ~3ParaRef BookmarkName - Returns the paragraph number where the specified bookmark resides.  <ParaRef Chapter5>
  166. TOC|125 25 ~ Toc Level "Text..." - Mark for Table of Contents, same as Text/Mark Text As/TOC Entry...
  167. MergeField|125 26 ~ MergeField Mergefieldname - Insert the contents of this field at merge time.
  168. ExecuteScript|125 29 ~ ExecuteScript "Filename!Function" - Execute a LotusScript function. !Function will execute a script function stored behind Globals of this document
  169. ;keycodes|116 decimalvalue
  170. %Backspace|116 8
  171. %Tab|116 9
  172. %Enter|116 13
  173. %Space|116 32
  174. %PgUp|116 33
  175. %PgDn|116 34
  176. %End|116 35
  177. %Home|116 36
  178. %Left|116 37
  179. %Up|116 38
  180. %Right|116 39
  181. %Down|116 40
  182. %Ins|116 45
  183. %Del|116 46
  184. %Esc|116 27
  185. %F1|116 112
  186. %F2|116 113
  187. %F3|116 114
  188. %F4|116 115
  189. %F5|116 116
  190. %F6|116 117
  191. %F7|116 118
  192. %F8|116 119
  193. %F9|116 120
  194. %F10|116 121
  195. %F11|116 122
  196. %F12|116 123
  197. ;macro_functions_name|105 class parm_cnt
  198. Query$|105 1 -1    ~ *Query$("Message text" [,"Default text"]) - Displays a dialog box requesting input from the user.  <Query$("What is your name?")>
  199. Query|105 1 -1
  200. Decide|105 2 -1 ~ *Decide("Message Text") - Ask a Yes/No question.  <IF decide("Use Creation date?") CreateDate ELSE EditDate ENDIF %Db>
  201. Message|105 3 -1    ~ *Message("Message Text" [,"Title"]) - Display a message.  <Message("Good morning Mr. Phelps")>
  202. SingleStep|105 4 1
  203. DEBUG|105 5 1
  204. Type|105 6 1
  205. UserControl|105 7 1
  206. DDEInitiate|105 8 2
  207. DDETerminate|105 9 1
  208. DDEReceive$|105 10 2
  209. DDEReceive|105 10 2
  210. DDEExecute|105 11 2
  211. DDEAdvise|105 12 3
  212. strchr|105 13 3
  213. Len|105 14 1    ~ *Len(expression) - Returns the number of characters in the expression.  <Len(Query$("Type something"))>
  214. Mid$|105 15 3    ~ *Mid$(expression, start, count) - Return "count" characters from expression begining at "start".  <Mid$("(404) 851-0007", 2, 3)>
  215. Mid|105 15 3
  216. StrCat$|105 16 -1    ~ *StrCat$(expression, expression [,expression..]) - Put two or more strings together.  <StrCat$(Query$("Greeting?"), " Mr Jones.")>
  217. StrCat|105 16 -1
  218. LCase$|105 17 1    ~ *LCase$(expression) - Convert the expression to lower case and return the result.  <LCase$("Hello")>
  219. LCase|105 17 1
  220. UCase$|105 18 1    ~ *UCase$(expression) - Convert the field to upper case and return the result.  <UCase$("Hello")>
  221. UCase|105 18 1
  222. FormatNum$|105 19 4 ~ *FormatNum$(prefix, suffix, decimals, expression) - Formats a number.  <FormatNum$("$", "", 2, 235.8)>
  223. FormatNum|105 19 4
  224. StrField$|105 20 3    ~ *StrField$(expression, n, sep) - Return the n'th element in expression, using sep as a delimeter.  <StrField$("one,two,three", 2, ",")>
  225. StrField|105 20 3
  226. MultiDecide|105 21 -2
  227. Exec|105 22 -1    ~ *Exec(program, parameters [,show]) - Run another program.  <Exec("123w.exe", Query$("Spread sheet name?"))>
  228. CurWord$|120 0 _$$3CurWord$
  229. CurWord|120 0 _$$3CurWord$
  230. CurShade$|120 0 _$$3CurShade$
  231. CurShade|120 0 _$$3CurShade$
  232. FillList|105 25 -1
  233. DialogBox|105 26 2
  234. GetDialogField$|105 27 1
  235. GetDialogField|105 27 1
  236. GetViewLevel|105 1579 0        'GetViewLevel|120 0 _$$4GetViewLevel
  237. GetMode|105 1572 0        'GetMode|120 0 _$$4GetMode
  238. Messages|105 30 1
  239. FillEdit|105 31 2
  240. IgnoreKeyboard|105 32 1
  241. DDEUnAdvise|105 33 2
  242. FileChanged|105 1634 2            'FileChanged|120 2 _$$2FileChanged
  243. DDEPoke|105 35 3
  244. SendKeys|105 36 -1
  245. GetTextBeforeCursor|105 1680 0        'GetTextBeforeCursor$|120 0 _$$4GetTextBeforeCursor
  246. GetTextBeforeCursor$|105 1680 0        'GetTextBeforeCursor|120 0 _$$4GetTextBeforeCursor
  247. ActivateApp|105 38 1
  248. chr$|105 39 1
  249. chr|105 39 1
  250. asc|105 40 1
  251. SetDlgCallBack|105 41 2
  252. GetDlgItemText|105 42 2
  253. SetDlgItemText|105 43 3
  254. GetDlgItem|105 44 2
  255. GetViewprefopts|105 1742 0    'GetViewPrefOpts|120 0 _$$2GetViewPrefOpts
  256. GetViewPrefLevel|105 1580 0    'GetViewPrefLevel|134 .UserInterface.WinView.View.Level
  257. DlgKeyInterrupt|105 1688 2    'DlgKeyInterrupt|105 47 2
  258. Event|105 48 -5
  259. BeginChange|105 49 -1
  260. EndChange|105 50 -1
  261. Abort|105 51 1
  262. GetPassedParmCnt|105 52 0
  263. DlgEnableControl|105 53 3
  264. DlgClearControl|105 54 2
  265. DlgSetFocus|105 55 2
  266. DlgHideControl|105 56 3
  267. Enumerate|105 57 2
  268. SendControl|105 58 -1
  269. SendPrimitive|105 59 -1
  270. DlgGetListBoxCount|105 60 2
  271. DlgGetListBoxIndex|105 61 2
  272. DlgSetListBoxIndex|105 62 3
  273. DlgGetListBoxLine$|105 63 3
  274. DlgGetListBoxLine|105 63 3
  275. DlgClose|105 64 1
  276. DlgListBoxDeleteItem|105 65 3
  277. DlgListBoxInsertItem|105 66 4
  278. PostCommand|105 67 1
  279. SendCommand|105 68 -1
  280. UnStack|105 69 1
  281. Stack|105 70 0
  282. SubClassDialog|105 71 2
  283. DlgSetDefaultButton|105 72 2
  284. DlgSetHelpNumber|105 73 1
  285. DlgLimitText|105 74 3
  286. DlgSetCaption|105 75 2
  287. RexxCmd|105 76 -1
  288. RexxFunction|105 77 1
  289. _NoCanDo|105 78 0
  290. 'IsOkToRun|105 79 1
  291. GetHomeDirectory$|105 80 0
  292. QueryVerb|105 81 -1
  293. SetLogging|105 82 1
  294. EnableAmipro|105 83 1
  295. GetAmiMainhWnd|105 84 0
  296. GetAmiActivehWnd|105 85 0
  297. QuickOpen|105 86 1
  298. fgets$|105 257 1
  299. fgets|105 257 1
  300. fputs|105 258 -2
  301. fopen|105 259 2
  302. fclose|105 260 1
  303. GetMarkText$|105 1661 0            'GetMarkText$|120 0 _$$5GetMarkText
  304. GetmarkText|105 1661 0            'GetMarkText|120 0 _$$5GetMarkText
  305. ftell|105 262 1
  306. fseek|105 263 3
  307. SetGlobalVar|105 264 2
  308. GetGlobalVar$|105 265 1
  309. GetGlobalVar|105 265 1
  310. FreeGlobalVar|105 266 1
  311. GetOpenFileName|105 1628 0            'GetOpenFileName|120 0 _$$2GetOpenFileName$
  312. GetOpenFileName$|105 1628 0            'GetOpenFileName$|120 0 _$$2GetOpenFileName$
  313. CatSlash|120 1 _$$5CatSlash
  314. GetDocPath$|134 CatSlash(.UserInterface.UIPreferences.DocumentName)
  315. GetDocPath|105 1570 0        'GetDocPath|134 CatSlash(.UserInterface.UIPreferences.DocumentName)
  316. GetStylePath$|105 1578 0    'GetStylePath$|134 CatSlash(.UserInterface.UIPreferences.StylePath)
  317. GetStylePath|105 1578 0        'GetStylePath|134 CatSlash(.UserInterface.UIPreferences.StylePath)
  318. GetBackPath$|105 1566 0        'GetBackPath$|134 CatSlash(.UserInterface.UIPreferences.Backup)
  319. GetBackPath|105 1566 0        'GetBackPath|134 CatSlash(.UserInterface.UIPreferences.Backup)
  320. AllocGlobalVar|105 271 2
  321. SetGlobalArray|105 272 3
  322. GetGlobalArray$|105 273 2
  323. GetGlobalArray|105 273 2
  324. Pause|105 274 1
  325. AssignKey|105 275 2
  326. GetTime|105 276 0
  327. IsNumeric|105 277 1
  328. AtEof|105 1541 0        'AtEof|120 0 _$$4AtEof        
  329. GetDocInfo$|105 1540 1        'GetDocInfo$|120 1 _$$1GetDocInfo$
  330. FindFirst$|105 280 2
  331. FindFirst|105 280 2
  332. FindNext$|105 281 0
  333. FindNext|105 281 0
  334. CurChar$|120 0 _$$4CurChar
  335. CurChar|120 0 _$$4CurChar
  336. DllLocate|105 283 3
  337. DllCall|105 284 -1
  338. RunLater|105 285 2
  339. GetProfileString$|105 286 -1
  340. GetProfileString|105 286 -1
  341. WriteProfileString|105 287 -1
  342. GetStyleName$|105 1577 0
  343. GetStyleName|105 1577 0        'GetStyleName|105 288 0
  344. GetCurrentDir$|105 290 0
  345. GetCurrentDir|105 290 0
  346. AnswerMsgBox|105 291 1
  347. DarkMode|105 292 1
  348. CursorPosition$|105 1546 0        'CursorPosition$|120 0 _$$5CursorPosition
  349. CursorPosition|105 1546 0        'CursorPosition|120 0 _$$5CursorPosition
  350. GetPageNo|105 1575 0        'GetPageNo|134 .Page.ID
  351. GetMacPath|105 1571 0        'GetMacPath|134 CatSlash(.UserInterface.UIPreferences.Macro)
  352. GetMacPath$|105 1571 0        'GetMacPath$|134 CatSlash(.UserInterface.UIPreferences.Macro)
  353. HourGlass|105 1681 1        'HourGlass|105 296 1
  354. DLLLoadLib|105 297 3
  355. DLLFreeLib|105 298 1
  356. GetGlobalVarCount|105 299 0
  357. GetGlobalVarNames|105 300 1
  358. GetDocInfoKeyWords$|105 1569 0        '120 0 _$$1GetDocInfoKeyWords$
  359. GetDocInfoKeyWords|105 1569 0        'GetDocInfoKeyWords|120 0 _$$1GetDocInfoKeyWords$
  360. GlossaryOpen|105 302 1
  361. GlossaryLookup|105 303 2
  362. GlossaryClose|105 304 1
  363. AddBar|105 513 0
  364. ShowBar|105 514 1
  365. AddMenu|105 515 2
  366. AddMenuItem|105 516 -4
  367. RenameMenuItem|105 517 -4
  368. CheckMenuItem|105 518 -4
  369. GrayMenuItem|105 519 -4
  370. DeleteMenuItem|105 520 -2
  371. DeleteMenu|105 521 -2
  372. AddMenuItemDDE|105 522 -4
  373. ChangeMenuAction|105 523 -4
  374. AddCascadeMenu|105 524 -3
  375. AddCascadeMenuItem|105 525 -5
  376. ChangeCascadeAction|105 526 -5
  377. InsertMenuItem|105 527 -5
  378. InsertCascadeMenu|105 528 -4
  379. InsertMenu|105 528 3
  380. InsertCascadeMenuItem|105 529 -6
  381. DateDiff|105 769 2
  382. FormatDate$|105 770 2
  383. FormatDate|105 770 2
  384. FormatSeq$|105 771 2
  385. FormatSeq|105 771 2
  386. Now|105 772 0 ~1*Now() - Returns the current Date/time. <Now() %Db>
  387. FormatTime$|105 773 2
  388. FormatTime|105 773 2
  389. DOSGetEnv$|105 774 1
  390. DOSGetEnv|105 774 1
  391. DOSGetFileAttr|105 775 1
  392. DOSSetFileAttr|105 776 2
  393. DOSrmdir|105 777 1
  394. DOSrename|105 778 2
  395. DOSdelfile|105 779 1
  396. DOSmkdir|105 780 1
  397. DOSchdir|105 781 1
  398. fread|105 782 2
  399. fwrite|105 783 -2
  400. BracketsToBin|105 784 1
  401. BinToBrackets|105 785 1
  402. Round|105 786 1
  403. Truncate|105 787 1
  404. Mod|105 788 2
  405. StatusBarMsg|105 789 1
  406. ChangeIcons|105 1662 1            'ChangeIcons|134 .UserInterface.SmartIcons.Load(%1)
  407. SetIconSize|105 1666 1            'SetIconSize|120 1 _$$3SetIconSize
  408. PhysicalToLogical|120 1 _$$6PhysicalToLogical
  409. GetFmtPageStr$|105 1672 1        'GetFmtPageStr$|120 1 _$$5GetFmtPageStr
  410. GetFmtPageStr|105 1672 1        'GetFmtPageStr|120 1 _$$5GetFmtPageStr
  411. GetCurFrameLines|105 1664 10            'GetCurFrameLines|120 10 _$$2GetCurFrameLines
  412. GetCurFrameType|105 1652 3            'GetCurFrameType|120 3 _$$2GetCurFrameType
  413. GetCurFrameBorders|120 9 _$$2GetCurFrameBorders
  414. SelectWindow|105 1542 1        'SelectWindow|105 796 1
  415. SelectFrameByName|105 1606 1    'SelectFrameByName|134 MarkBookMark(%1, 4002)
  416. GetAmiDirectory$|105 798 0
  417. GetAmiDirectory|105 798 0
  418. GetRunningMacroName$|105 799 0
  419. GetRunningMacroName|105 799 0
  420. IsFrameSelected|105 1582 0        'IsFrameSelected|120 0 _$$2IsFrameSelected
  421. Beep|105 801 0
  422. GetRunningMacroFile$|105 802 0
  423. GetRunningMacroFile|105 802 0
  424. DOSCopyFile|105 803 2
  425. GetCurFontInfo|105 804 4
  426. Assign|105 805 2
  427. Left$|105 806 2 ~ *Left$(expression, count) - return the first "count" characters from expression.  <Left$("12345678", 4)>
  428. Left|105 806 2
  429. Right$|105 807 2 ~ *Right$(expression, count) - return the last "count" characters from expression.  <Right$("123456789", 5)>
  430. Right|105 807 2
  431. Instr|105 808 3
  432. AppMove|105 1025 3
  433. AppSize|105 1026 3
  434. AppClose|105 1027 1
  435. AppGetWindowPos|105 1028 5
  436. AppMaximize|105 1029 1
  437. AppMinimize|105 1030 1
  438. AppRestore|105 1031 1
  439. AppIsRunning|105 1032 1
  440. AppGetAppCount|105 1033 0
  441. AppGetAppNames|105 1034 1
  442. AppHide|105 1035 1
  443. AppSendMessage|105 1036 4
  444. ClipboardRead|105 1037 1
  445. ClipboardWrite|105 1038 2
  446. GetBookMarkCount|105 1039 0
  447. GetBookMarkNames|105 1040 1
  448. ArrayInsert|105 1041 3
  449. ArrayDelete|105 1042 2
  450. ArraySort|105 1043 -1
  451. ArraySearch|105 1044 -2
  452. ArrayInsertByKey|105 1045 -3
  453. ArraySize|105 1046 1
  454. GetMasterFilesCount|105 1691 0        'GetMasterFilesCount|120 0 _$$4MasterFile
  455. GetMasterFiles|105 1684    1        'GetMasterFiles|120 1 _$$4MasterFile
  456. GetBookMarkPage|105 1623 1        'GetBookMarkPage|120 1 _$$5GetBookMarkPage
  457. GetOpenFileCount|105 1050 0        'GetOpenFileCount|105 1573 0    
  458. GetOpenFileNames|105 1051 1        'GetOpenFileNames|105 1574 1
  459. GetLayoutType|120 0 _$$3GetLayoutType
  460. GetLayoutPageSize|105 1653 4        'GetLayoutPageSize|120 4 _$$3GetLayoutPageSize
  461. GetLayoutRightLines|105 1654 5        'GetLayoutRIghtLines|105 78 5    'NotSupported
  462. GetLayoutLeftLines|105 1733 5        'GetLayoutLeftLines|120 5 _$$3GetLayoutLeftLines
  463. GetLayoutParmCnt|105 1753 1        'GetLayoutParmCnt|105 1285 1 GetLayoutParmCnt|105 1 _$$6GetLayoutParmCnt
  464. GetLayoutParameters|105 1286 2
  465. AmiProIndirect|105 1287 3
  466. GetWindowsDirectory$|105 1288 0
  467. GetWindowsDirectory|105 1288 0
  468. EvalField|105 1289 1
  469. RecOpen|105 1290 -2
  470. RecClose|105 1291 1
  471. RecGetField|105 1292 2
  472. RecNextRec|105 1293 1
  473. RecFieldCount|105 1294 1
  474. RecFieldName$|105 1295 2
  475. RecFieldName|105 1295 2
  476. NWGetObjectCount|105 1296 1
  477. NWGetObjectNames|105 1296 3
  478. NWGetContainerCount|105 1297 1
  479. NWGetContainerNames|105 1297 3
  480. NWReferenceToFile$|105 1298 1
  481. NWGetCurrentContainer|105 1299 2
  482. NWGetCurrentObject$|105 1300 0
  483. TableGetRange|105 1617 4        'TableGetRange|120 4 _$$4TableGetRange 
  484. GetSpecialEffects$|105 1689 0        'GetSpecialEffects$|105 1302 0
  485. GetSpecialEffects|105 1689 0        'GetSpecialEffects|105 1302 0
  486. NWGetParent|105 1303 3
  487. GetPowerFieldCount|105 1304 1
  488. GetPowerFields|105 1305 2
  489. GotoPowerField|105 1306 2        '120 2 _$$5GotoPowerField
  490. GetPowerFieldPage|105 1307 2
  491. GetStyleCount|105 1576 0        'GetStyleCount|105 1308 0
  492. GetStyleNames|105 1309 1
  493. GetDocVar|105 1746 1                    'GetDocVar|134 .Document.NamedGetProperty(%1)
  494. SetDocVar|105 1747 2                    'SetDocVar|134 .Document.NamedSetProperty(%1, %2)
  495. GetMajic|105 1312 0
  496. 'GetInfo|105 1313 -1
  497. GetInfo|113 -1 1313 _$$6GetInfo
  498. KeyInterrupt|105 1314 1
  499. MouseInterrupt|105 1315 1
  500. GetIconPalette|105 1708 0
  501. IsNewWave|134 0
  502. OnMDIActivate|105 1318 1
  503. FieldLock|105 1319 2
  504. CallLSFunction|105 1321 -3    ' file function signature args
  505. FieldAuto|105 1320 2
  506. FieldRemove|105 1323 2
  507. FieldUpdate|105 1324 3
  508. ;Numeric Constants|109 value
  509. Event_Key|109 0
  510. Event_MouseDown|109 1
  511. Event_MouseUp|109 2
  512. Event_MouseMove|109 3
  513. Event_HScroll|109 6
  514. Event_VScroll|109 7
  515. Event_Size|109 9
  516. ;Sammy_Functions:_name|113 parmcnt menuid retval
  517. <+#><+!>'FILE
  518. PrintEnvelope|113 0 237 1
  519. MergeWelcome|113 0 781 0
  520. CreateDataFile|105 1701 0        'CreateDataFile|113 0 784 1
  521. OpenMergeFile|105 1728 3        'OpenMergeFile|113 3 785 _$$4OpenMergeFile
  522. CreateDescriptionFile|113 -1 783 _$$6CreateDescriptionFile
  523. OpenDataFile|105 1717 2            'OpenDataFile|113 2 789 _$$4OpenDataFile
  524. EditDataFile|113 0 787 1
  525. New|105 1636 3 101                    'New|113 3 101 _$$1New
  526. FileOpen|105 1559 3 790                'FileOpen|105 1559 3    'FileOpen|113 3 102 _$$1FileOpen
  527. 'OpenFile|113 2 790 1
  528. ImportText|105 1750 3                'ImportText|113 3 152 1 _$$6ImportText
  529. FileClose|113 0 732 1
  530. NextWindow|105 1659 0 727            'NextWindow|113 0 727 1
  531. Save|113 0 103 1
  532. SaveAs|105 1624 4 104        'SaveAs|113 4 104 _$$2SaveAs
  533. SaveAsObject|113 4 127 1
  534. SaveAsMaster|113 2 130 1
  535. Revert|105 1751 0        'Revert|113 0 105 1
  536. ImportPicture|105 1643 4 141        'ImportPicture|113 4 141 _$$4ImportPicture
  537. 'ImportExport|105 7 78 _$$6amiImportExport        
  538. 'ImportExport|105 78 -1    
  539. 'ImportExport|113 78 -1 _$$6amiImportExport
  540. ImportExport|113 -1 254 _$$6amiImportExport
  541. FileManagement|105 1725 0        'FileManagement|105 FileManagement|120 0 _$$5FileManagement
  542. '_FileManagement|113 0 108 1
  543. DocInfo|105 1551 3 109            'DocInfo|113 3 109 _$$1DocInfo
  544. RenameDocInfoField|105 1739 2 125    'RenameDocInfoField|113 2 125 _$$1RenameDIF
  545. DocInfoFields|105 1552 8 140        'DocInfoFields|113 8 140 _$$1DocInfoFields
  546. DDELinks|113 -1 115 1
  547. MasterDoc|105 1694 0            'MasterDoc|113 0 146 0
  548. MasterDocOpts|105 1693 0        'MasterDocOpts|105 78 0            'NotSupported
  549. Merge|113 -1  781  _$$6Merge        '110
  550. MergeToFile|113 -1 110 _$$6MergeToFile
  551. MergeMacro|113 -1 110 _$$6MergeMacro
  552. MergeAction|105 1735 1            'MergeAction|113 1 116 _$$4MergeAction
  553. SelectDataFile|113 2 780 _$$4SelectDataFile
  554. SelectMergeDataFile|113 2 788 0
  555. FilePrint|105 1560 4 111        'FilePrint|113 4 111 _$$3FilePrint
  556. PrintOptions|113 3 126 _$$3PrintOptions
  557. PrintSetup|105 1602 2 112        'PrintSetup|113 -1 112 _$$5PrintSetup
  558. SetMasterFiles|105 1683 3        'SetMasterFiles|120 -3 _$$4SetMasterFiles
  559. settocfile|105 1698 1            'SetTOCFile|120 1 _$$4SetTOCFile
  560. SetIndexFile|105 1699 2            '2 SetIndexFile|120 2 _$$4SetIndexFile
  561. SetTOCOpts|105 1700 6            'SetTOCOpts|113 7 470 _$$3SetTOCOpts
  562. TOCOptions|113 -1 495 _$$6TOCOptions
  563. ObjectAttributes|113 4 143 1
  564. ASCIIOptions|105 1731 1            'AsciiOptions|113 1 123 1
  565. SendMail|113 1 229 1
  566. ReadMail|113 0 000 _$$6ReadMail
  567. OpenPreviousFile1|105 1595 0 133        'OpenPreviousFile1|113 0 133 1
  568. OpenPreviousFile2|105 1596 0 134        'OpenPreviousFile2|113 0 134 1
  569. OpenPreviousFile3|105 1597 0 135        'OpenPreviousFile3|113 0 135 1
  570. OpenPreviousFile4|105 1598 0 136        'OpenPreviousFile4|113 0 136 1
  571. OpenPreviousFile5|105 1599 0 137        'OpenPreviousFile5|113 0 137 1
  572. <+#><+!>'EDIT
  573. Undo|113 0 151 1
  574. Cut|113 0 153 1
  575. Copy|105 1545 0 154                'Copy|113 0 154 1
  576. Paste|113 0 155 1
  577. PasteSpecial|105 1713 1
  578. InsertVariable|113 0 158 0
  579. InsertMerge|113 0 182 0
  580. InsertDocInfo|113 0 183 0
  581. InsertDate|105 1644 2 165            'InsertDate|113 2 165 _$$2InsertDate
  582. InsertMergeField|105 1657 1            'InsertMergeField|134 FieldAdd(%1)
  583. InsertDocInfoField|105 1645 2            'InsertDocInfoField|120 2 _$$5InsertDocInfoField
  584. MarkText|113 0 159 0
  585. MarkTOC|113 0 159 103
  586. MarkIndexWord|113 0 180 0
  587. MarkTOCEntry|113 0 835 0
  588. InsertBullet|105 1656 1 836            'InsertBullet|113 1 836 _$$2InsertBullet
  589. MarkBookMark|105 1658 2 466            'MarkBookMark|113 2 466 _$$4MarkBookMark
  590. Footnotes|105 1718 5 160            'Footnotes|113 5 160 _$$3Footnotes
  591. Notes|105 1594 0 282                'Notes|113 0 282 1
  592. InsertNote|105 1743 1        'InsertNote|120 1 _$$5InsertNote
  593. SetDefPaths|105 1610 0                'SetDefPaths|105 78 0    'NotSupported
  594. UseWorkingDir|105 1621 1 591            'UseWorkingDir|113 1 591 _$$3UseWorkingDir
  595. SetDefOptions|105 1609 2 173            'SetDefOptions|113 2 173 _$$4SetDefOptions
  596. SetDocPath|113 1 174 _$$1SetDocPath
  597. SetStylePath|113 1 175 _$$1SetStylePath
  598. SetBackPath|113 1 176 _$$1SetBackPath
  599. SetMacroPath|113 1 286 _$$1SetMacroPath
  600. SetIconPath|105 1611 1 518            'SetIconPath|113 1 518 _$$1SetIconPath
  601. FieldEvaluate|113 0 571 1
  602. FieldNext|105 1626 0 569            'FieldNext|113 0 569 _$$5FieldNext
  603. FieldPrev|105 1627 0 570            'FieldPrev|113 0 570 _$$5FieldPrev
  604. FieldAdd|134 .InsertField(%1)
  605. FieldSave|113 1 269 1
  606. FieldEnd|113 0 568 1
  607. FieldCommand|113 0 568 0
  608. FieldToggleDisplay|105 1557 0 266        'FieldToggleDisplay|113 0 266 0
  609. FieldShow|120 -1 _$$4FieldShow
  610. FieldShowResults|134 FieldShow(1)
  611. FieldUpdateAll|105 1633 0 267            'FieldUpdateAll|113 0 267 1
  612. ProtectedText|105 1603 0            'ProtectedText|113 -1 188 1
  613. NoHyphenation|105 1646 0 189            'NoHyphenation|113 -1 189 1
  614. SetDataFile|105 1710 4            
  615. GlossaryAdd|105 1730 3                'GlossaryAdd|113 3 199 1
  616. RevisionInsertion|113 0 187 1
  617. InsertNewObject|113 1 589 1
  618. <+!><+#>'OBJECT
  619. CreateANew|113 0 192 1
  620. OpenObject|113 0 191 1
  621. ListObjects|113 2 193 1
  622. ShowLinks|113 1 194 1
  623. ObjectAttributes|113 4 195 1
  624. Share|105 1744 0            'Share|113 0 184 1
  625. <+#><+!>'<-#><+#>VIEW
  626. FullPageView|105 1565 0    201        'FullPageView|113 0 201 1
  627. CustomView|105 1547 0 202        'CustomView|113 0 202 1
  628. WorkingView|113 0 202 1
  629. StandardView|113 0 203 1
  630. EnlargedView|105 1554 0 204        'EnlargedView|113 0 204 1
  631. FacingView|105 1555 0 214        'FacingView|113 0 214 1
  632. LayoutMode|105 1584 0 210        'LayoutMode|113 0 210 1
  633. DraftMode|105 1553 0 211        'DraftMode|113 0 211 _$$5DraftMode
  634. _DraftMode|113 0 211 1
  635. OutlineMode|105 1601 0 218            'OutlineMode|113 0 218 1
  636. ViewPreferences|105 1651 2 206            'ViewPreferences|113 2 206 _$$2ViewPreferences
  637. ToggleCleanScreen|105 1619 0            'ToggleCleanScreen|113 0 233 1
  638. CleanScreenOptions|105 1685 1 206        'CleanScreenOptions|113 1 234 _$$3CleanScreenOptions
  639. ToggleTabRuler|105 1620 0 207            'ToggleTabRuler|113 0 207 1
  640. ShowTabRuler|134 __$TabRuler(1)
  641. HideTabRuler|134 __$TabRuler(2)
  642. __$TabRuler|120 1 _$$6TabRuler
  643. ToggleIconbar|113 0 208 1
  644. ShowIconBar|105 1613 0        'ShowIconbar|120 0 _$$1ShowIconBar
  645. HideIconbar|105 1581 0        'HideIconbar|120 0 _$$1HideIconBar
  646. LoadOptions|105 1702 3        'LoadOptions|113 3 217 _$$1LoadOptions
  647. <+#><+!>'TEXT
  648. FastFormat|105 1667 0        'FastFormat|134 .FastFormat(0)
  649. ApplyFormat|105 1696 0        'ApplyFormat|113 0 238 1
  650. FontChange|113 4 251 _$$1FontChange
  651. FontRevert|105 1562 0 251        'FontRevert|113 0 251 _$$1FontRevert
  652. LeftAlign|113 0 259 1
  653. RightAlign|113 0 261 1
  654. Center|113 0 260 1
  655. Justify|105 1583 0 262            'Justify|113 0 262 1
  656. Spacing|105 1679 1            'Spacing|113 1 252 _$$2Spacing
  657. NormalText|113 0 253 _$$2NormalText
  658. Bold|113 -1 254 _$$3Bold
  659. Italic|113 -1 255 _$$3Italic
  660. Underline|113 -1 256 _$$3Underline
  661. WordUnderline|113 -1 257 _$$3WordUnderline
  662. SpecialEffects|113 2 258 _$$3SpecialEffects
  663. Indent|113 4 265 _$$1Indent
  664. IndentAll|105 1703 0            'IndentAll|113 0 247 _$$1IndentAll
  665. IndentFirst|105 1704 0            'IndentFirst|113 0 248 _$$1IndentFirst
  666. IndentRest|105 1705 0            'IndentRest|113 0 249 _$$1IndentRest
  667. Uppercase|105 1740 0 273        'Uppercase|113 0 273 _$$1Uppercase
  668. LowerCase|105 1741 0 287        'LowerCase|113 0 287 _$$1LowerCase
  669. InitialCaps|105 78 -1            'NotSupported
  670. SmallCaps|105 1665 0 289            'SmallCaps|113 0 289 _$$1SmallCaps
  671. <+#><+!>'STYLE
  672. CreateStyle|105 1721 3 301            'CreateStyle|113 3 301 _$$1CreateStyle
  673. ModifyStyle|113 0 302 0
  674. ModifySelect|105 1588 1                'ModifySelect|120 1 _$$5ModifySelect
  675. ModifyBreaks|113 -3 312 _$$1ModifyBreaks
  676. ModifyAlignment|113 6 313 _$$1ModifyAlignment
  677. ModifyLines|113 8 314 _$$1ModifyLines
  678. ModifyFont|113 4 315 _$$1ModifyFont
  679. ModifySpacing|113 7 316 _$$1ModifySpacing
  680. ModifyTable|113 6 317 _$$1ModifyTable
  681. ModifyEffects|113 7 318 _$$1ModifyEffects
  682. ModifyReflow|134 SetGlobalVar("__MODIFY_SELECT__", "")
  683. UseAnotherStyle|105 1650 2 304            'UseAnotherStyle|113 2 304 1
  684. SaveAsNewStyle|105 1748 5                 'SaveAsNewStyle|113 5 305 _$$5SaveAsNewStyle
  685. StyleManagement|113 0 303 0
  686. SelectStyle|105 1738 0                    'SelectStyle|113 0 306 0
  687. Togglestylesbox|105 1649 0                'ToggleStylesBox|105 78 0    'NotSupported
  688. ShowStylesBox|105 1647 0                'ShowStylesBox|105 78 0    'NotSupported
  689. HideStylesBox|105 1637 0 307                'HideStylesBox|113 0 307 3
  690. DefineStyle|105 1548 0 324                'DefineStyle|113 0 324 1
  691. StyleManageInit|105 1616 0
  692. StyleManageAction|105 1719 3                'StyleManageAction|105 78 3    'NotSupported
  693. StyleManageFinish|105 1615 0
  694. OutlineStyle|113 -1 320 _$$5OutlineStyle
  695. SetStyle|105 1612 1 323            'SetStyle|113 1 323 _$$1SetStyle
  696. <+#><+!>'PAGE
  697. InsertLayout|105 1711 0            'InsertLayout|134 .InsertPageLayout()
  698. RemoveLayout|105 1714 0            
  699. RevertLayout|105 1707 0            
  700. ModifyLayout|113 0 352 0
  701. ModLayoutFinish|120 0 _$$3ModLayoutFinish
  702. ModLayoutInit|120 1 _$$3ModLayoutInit
  703. ModLayoutPageSize|120 4 _$$3ModLayoutPageSize
  704. ModLayoutRightPage|120 -8 _$$3ModLayoutRightPage
  705. ModLayoutRightHeader|120 -8 _$$6ModLayoutRightHeader
  706. ModLayoutRightFooter|120 -8 _$$6ModLayoutRightFooter
  707. ModLayoutRightLines|120 5 _$$3ModLayoutRightLines
  708. ModLayoutLeftPage|120 -8 _$$3ModLayoutLeftPage
  709. ModLayoutLeftHeader|120 -8 _$$6ModLayoutLeftHeader
  710. ModLayoutLeftFooter|120 -8 _$$6ModLayoutLeftFooter
  711. ModLayoutLeftLines|120 5 _$$3ModLayoutLeftLines
  712. FloatingHeader|105 78 1    'NotSupported
  713. TabRulerInsert|105 1734 0            'TabRulerInsert|113 0 371 _$$3TabRulerInsert
  714. TabRulerRemove|105 1618 0 372            'TabRulerRemove|113 0 372 _$$3TabRulerRemove
  715. PageNumber|105 1669 4 356            'PageNumber|113 4 356 _$$3PageNumber
  716. LineNumber|105 1726 3 359            'LineNumber|113 3 359 _$$5LineNumber
  717. PageBreak|105 1670 1                'PageBreak|113 1 357 _$$3PageBreak
  718. HeaderFooter|105 1655 1 377        'HeaderFooter|113 1 377 _$$3HeaderFooter
  719. FloatHeader|113 0 360 0
  720. <+!><+#>'FRAME
  721. 'AddFrame|113 4 413 1
  722. AddFrame|105 1660 4 413            'AddFrame|113 4 413 _$$2AddFrame
  723. ManualFrame|113 0 409 1
  724. AddFrameDlg|113 4 414 1
  725. FrameLayout|105 1635 0 402            'FrameLayout|113 0 402 0
  726. GraphicsScaling|105 1712 6            'GraphicsScaling|105 78 6            'NotSupported
  727. DrawingMode|105 78 0                'NotSupported
  728. ChartingMode|105 1668 0 412            'ChartingMode|113 0 412 1
  729. Equations|105 1648 0                'Equations|134 .CreateGraphic("AmiEqn")
  730. ImageProcessing|113 0 424 _$$6ImageProcessing             'ImageProcessing|113 0 424 1
  731. GroupFrames|113 0 404 1
  732. BringFrameToFront|105 1543 0            'BringFrameToFront|120 0 _$$5BringFrameToFront
  733. SendFrameToBack|105 1608 0            'SendFrameToBack|120 0 _$$5SendFrameToBack
  734. SetFrameDefaults|105 1732 17            'SetFrameDefaults|120 17 _$$5SetFrameDefaults
  735. FrameModInit|105 1564 0                'FrameModInit|120 0 _$$2NULL
  736. FrameModLines|120 10 _$$2FrameModLines
  737. FrameModType|105 1690 3                'FrameModType|120 3 _$$2FrameModType
  738. FrameModBorders|120 9 _$$2FrameModBorders
  739. FrameModColumns|120 -1 _$$6FrameModColumns
  740. 'FrameModColumns|105 1622 4 2 2 3 2 
  741. FrameModFinish|105 1563 0            'FrameModFinish|120 0 _$$2NULL
  742. <+#><+!>'TOOLS
  743. GetNotesWriteHandle|105 1671 0
  744. GoToCmd|105 1631 3 452                '|113 3 452 _$$1GotoCmd
  745. GoToShade|105 1729 3                'GotoShade|105 78 3                'NotSupported
  746. GotoAgain|105 1722 0                'GotoAgain|113 0 452 _$$1GotoAgain
  747. FindReplace|113 0 451 0
  748. Replace|105 1682 5                'Replace|120 5 _$$4Replace
  749. Spell|113 0 475 0
  750. SpellCheck|105 1614 1 459            'SpellCheck|113 1 459 _$$4SpellCheck
  751. ChangeLanguage|105 1727 3            'ChangeLanguage|113 3 481 _$$4ChangeLanguage
  752. Thesaurus|113 0 455 0
  753. Glossary|105 1629 1 467                'Glossary|113 1 467 _$$3Glossary
  754. GlossSet|105 1630 1 468                'GlossSet|113 1 468 _$$3GlossSet
  755. Generate|105 1736 1                'Generate|113 1 465 _$$5Generate
  756. Sort|105 1539 6 456                'Sort|113 6 456 1
  757. ChangeShortcutKey|105 1737 3            'ChangeShortcutKey|113 3 490 _$$4ChangeShortcutKey
  758. OnKey|134 .UserInterface.Accelerators.Add(%3, %1, %2, 1)
  759. AssignMacroToFile|105 1697 3            'AssignMacroToFile|113 3 463 _$$4AssignMacroToFile
  760. Tables|113 -1 457 _$$6Tables
  761. 'Tables|105 1720 4
  762. UserSetup|105 1715 11            'UserSetup|113 11 162 _$$3UserSetup
  763. MacroEdit|105 1695 0            'MacroEdit|113 0 501 0
  764. MacroPlay|105 1709 0            'MacroPlay|113 0 502 0
  765. MacroOptions|105 1692 0            'MacroOptions|113 0 504 0
  766. IconCustomize|105 1642 0
  767. __$IconPos|120 1 _$$3IconPos
  768. IconRight|105 1640 0
  769. IconLeft|105 1641 0
  770. IconTop|105 1639 0
  771. IconBottom|105 1638 0
  772. IconFloating|105 1663 0
  773. RevisionMarking|113 2 460 _$$6RevisionMarking
  774. RevisionMarkOpts|105 1745 10            'RevisionMarkOpts|113 10 461 _$$1RevisionMarkOpts
  775. ReviewRevisions|105 1749 0            'ReviewRevisions|113 0 588 _$$1ReviewRevisions
  776. DocumentCompare|105 1678 1 500            'DocumentCompare|113 1 500 1
  777. <+#><+!>'WINDOW
  778. NewWindow|134 .NewWindowCmd()
  779. TileWindow|113 0 256 _$$3TileWindow
  780. CascadeWindow|113 0 257 _$$3CascadeWindow
  781. StartOfFiles|113 0 528 1
  782. <+#><+!>'TABLES
  783. TableLayout|105 1716 12            'TableLayout|113 -11 626 _$$2TableLayout
  784. TableLines|105 1752 5            'TableLines|113 5 632 _$$2TableLines
  785. InsertColumnRow|105 1687 3        'InsertColumnRow|113 3 627 _$$1InsertColumnRow
  786. DeleteColumnRow|105 1549 1        'DeleteColumnRow|113 1 628 _$$1DeleteColumnRow
  787. SizeColumnRow|105 1686 4 634        'SizeColumnRow|113 4 634 _$$1SizeColumnRow
  788. ConnectCells|105 1544 0            'ConnectCells|113 0 635 _$$5ConnectCells
  789. Heading|113 0 631 1
  790. ProtectCells|105 1632 0        'ProtectCells|113 0 638 _$$1ProtectCells
  791. LeaderNone|105 1587 0        'LeaderNone|113 0 642 0
  792. LeaderDots|105 1706 0        'LeaderDots|113 0 639 0
  793. LeaderHyphs|105 1585 0        'LeaderHyphs|113 0 640 0
  794. LeaderLines|105 1586 0        'LeaderLines|113 0 641 0
  795. QuickAddCol|113 0 644 0
  796. QuickAddRow|113 0 643 0
  797. EditFormula|113 0 629 0
  798. SetFormula|113 1 637 _$$1SetFormula
  799. MoveParagraphUp|105 1591 0        'MoveParagraphUp|105 78 0    'NotSupported
  800. MoveParagraphDown|105 1590 0        'MoveParagraphDown|105 78 0    'NotSupported
  801. MoveLeftOrPromote|105 1589 0        'MoveLeftOrPromote|105 78 0    'NotSupported
  802. MoveRightOrDemote|105 1592 0        'MoveRightOrDemote|105 78 0    'NotSupported
  803. SelectColumn|105 1604 0            ' SelectColumn|134 .Table.Select(Column)
  804. SelectRow|105 1607 0            'SelectRow|134 .Table.Select(Row)
  805. SelectEntireTable|105 1605 0         'SelectEntireTable|134 .Table.Select(Table)
  806. DeleteEntireTable|105 1550 0        'DeleteEntireTable|134 .Table.Delete(Table)
  807. <+#><+!>'HELP
  808. Help|113 0 551 0
  809. About|113 0 552 0
  810. MacroHelp|113 0 553 0
  811. EnhancementProducts|105 1723 0        'EnhancementProducts|113 0 555 0
  812. UsingHelp|113 0 830 0
  813. KeyboardHelp|113 0 831 0 
  814. HowDoIHelp|105 1724 0            'HowDoIHelp|113 0 832 0 
  815. BasicsHelp|113 0 833 0
  816. UpgradeHelp|113 0 834 0
  817. <+#><+!>'MISC
  818. GetMailName$|105 302 0
  819. TypeOver|120 -1 _$$4TypeOver
  820. PageDown|134 .Forward(Page, 1, "")
  821. PageUp|134 .Backward(Page, 1, "")
  822. FontFaceChange|105 1625 1 278        'FontFaceChange|113 1 278 _$$1FontFaceChange
  823. FontPointSizeChange|105 1561 1        'FontPointSizeChange|113 1 279 _$$1FontPointSizeChange
  824. OutlineLevels|105 1600 1        'OutlineLevels|113 1 757 1
  825. Delete|113 0 179 1
  826. ControlPanel|105 1538 0 601        'ControlPanel|113 0 601 1
  827. 'TabRuler|105 78 -1 _$$6TabRuler        'TabRuler|105 78 -1
  828. TabRuler|113 -1 000 _$$6TabRuler
  829. ;sammy2funs|122 parmcnt message wparam
  830. Minimize|122 0 274 61472
  831. Maximize|122 0 274 61488
  832. Restore|122 0 274 61728
  833. ExitAmi|122 0 274 61536
  834. LineDown|113 0 000 _$$6AmiLineDown
  835. LineUp|113 0 000 _$$6AmiLineUp
  836. ScreenDown|134 Event(Event_VScroll, 0, 4, 0, 0)
  837. ScreenUp|134 Event(Event_VScroll, 0, 3, 0, 0)
  838. ElevatorUpDown|122 1 277 4
  839. TopOfFile|134 Event(Event_VScroll, 0, 5, 0, 0)
  840. EndOfFile|134 Event(Event_VScroll, 32767, 5, 0, 0)
  841. CharRight|134 Event(Event_HScroll, 0, 2, 0, 0)
  842. CharLeft|134 Event(Event_HScroll, 0, 1, 0, 0)
  843. ScreenRight|134 Event(Event_HScroll, 0, 3, 0, 0)
  844. ScreenLeft|134 Event(Event_HScroll, 0, 4, 0, 0)
  845. ElevatorLeftRight|122 1 276 4
  846. LeftEdge|134 Event(Event_HScroll, 58, 5, 0, 0)
  847. RightEdge|134 Event(Event_HScroll, 32767, 5, 0, 0)
  848. [Embedded]
  849. 00038714
  850.