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