· 6 years ago · Apr 24, 2019, 01:48 PM
1## 14.3
2
3[HoldKey]
4Description=Presses a key for a specified duration
5NumFields=4
6Caption1=Char or VKCode:
7Caption2=Milliseconds:
8Default2=500
9Caption3=Special (0/1):
10Default3=0
11ButtonType3=5
12Caption4=Do Repeat:
13Default4=1
14ButtonType4=5
15
16
17[SetVolume]
18Description=Sets the system volume level
19NumFields=1
20Caption1=Volume Percent:
21
22[OCRImage]
23Description=Extracts text from specified image file using OCR
24NumFields=2
25Caption1=Filename:
26ButtonType1=1
27Caption2=Result:
28Default2=strText
29
30[OCRScreen]
31Description=Extracts text from the screen using OCR
32NumFields=1
33Caption1=Result:
34Default1=strText
35
36[OCRWindow]
37Description=Extracts text from specified window using OCR
38NumFields=2
39Caption1=Window Title:
40ButtonType1=2
41Caption2=Result:
42Default2=strText
43
44[OCRArea]
45Description=Extracts text from specified screen region using OCR
46NumFields=5
47Caption1=Left:
48Caption2=Top:
49Caption3=Right:
50Caption4=Bottom:
51Caption5=Result:
52Default5=strText
53
54
55[PyExec]
56Description=Executes Python Code
57NumFields=3
58Caption1=Code:
59Caption2=Buffer Var:
60Caption3=Result Parms:
61
62[JSONParse]
63Description=Parses JSON
64NumFields=3
65Caption1=JSON String:
66Caption2=JSONPath:
67Caption3=Result Var:
68Default4=strResult
69
70[XMLParse]
71Description=Parses XML
72NumFields=4
73Caption1=XML String:
74Caption2=XMLPath:
75Caption3=Result String:
76Caption4=Num Items:
77Default3=strResult
78Default4=intNumItems
79
80[Format]
81Description=Formats Data
82NumFields=3
83Caption1=Format String:
84Caption2=Data:
85Caption3=Result:
86Default3=strResult
87
88[AESEncrypt]
89Description=Encrypts or Decrypts a string using AES and a SHA256 Key
90NumFields=4
91Caption1=String:
92Caption2=SHA256 Key:
93Caption3=Encrypt/Decrypt:
94Options3=ENCRYPT,DECRYPT
95Default3=ENCRYPT
96Caption4=Result:
97Default4=strResult
98
99[Hash]
100Description=Calculates the hash of a string
101NumFields=3
102Caption1=String:
103Caption2=Algorithm:
104Options2=MD5,SHA1,SHA256
105Caption3=Result:
106Default2=MD5
107Default3=strHash
108
109[SetRoundMode]
110Description=Sets the rounding mode for Round function
111NumFields=1
112Caption1=Rounding Mode:
113Default1=0
114
115[ZipAddFiles]
116Description=Adds files to a zip archive
117NumFields=5
118Caption1=Archive:
119ButtonType1=1
120Caption2=Filespec:
121Caption3=Compression:
122Options3=0,1,2,3,4,5,6,7,8,9
123Caption4=Folders:
124ButtonType4=5
125Caption5=Result:
126Returns=5
127
128[ZipExtractFiles]
129Description=Extracts files from a zip archive
130NumFields=4
131Caption1=Archive:
132ButtonType1=1
133Caption2=Filespec:
134Caption3=Destination:
135ButtonType3=10
136Caption4=Result:
137Returns=4
138
139[HTMLEncode]
140Description=Replaces the characters with special HTML significance with the corresponding HTML character entities.
141NumFields=2
142Caption1=Text:
143Caption2=Result:
144Returns=2
145FormHeight=283
146
147[HTMLDecode]
148Description=Replaces the HTML character entities with the corresponding HTML special characters.
149NumFields=2
150Caption1=HTML Data:
151Caption2=Result:
152FormHeight=283
153Returns=2
154
155[PopupMenu]
156Description=Creates and displays a simple pop up menu
157NumFields=4
158Caption1=X Coord:
159Caption2=Y Coord:
160Caption3=List:
161Caption4=Result:
162FormHeight=283
163Returns=4
164
165[Wow64DisableRedirection]
166Description=Prevents Windows redirecting file system operations to 32 bit subsystem
167NumFields=0
168
169[Wow64EnableRedirection]
170Description=Re-enables Wow64 File System Redirection (preventing script from seeing 64 bit file system)
171NumFields=0
172
173[DelVariable]
174Description=Deletes a Variable
175NumFields=1
176Caption1=Variable Name:
177
178[DelArray]
179Description=Deletes an Array
180NumFields=1
181Caption1=Array Name:
182
183[ArrayDel]
184Description=Deletes an Array
185NumFields=1
186Caption1=Array Name:
187
188[ArrayDim]
189Description=Creates or Resizes an Array
190NumFields=2
191Caption1=Array Name:
192Caption2=Number Of Elements:
193Returns=1
194
195[ArrayCopy]
196Description=Copies an Array
197NumFields=3
198Caption1=Array Name:
199Caption2=Suffix Format:
200Caption3=New Array:
201
202[ArrayRename]
203Description=Renames an Array
204NumFields=3
205Caption1=Array Name:
206Caption2=Suffix Format:
207Caption3=New Array:
208
209[ArrayFind]
210Description=Finds index of item in array
211NumFields=5
212Caption1=Array Name:
213Caption2=Text to find:
214Caption3=Result Variable:
215Default3=nIndex
216Returns=3
217Caption4=Use Regex:
218ButtonType4=5
219Caption5=Suffix Format:
220Default5=_n
221
222[DateAdd]
223Description=Adds a given interval to a date
224NumFields=4
225Caption1=Date:
226Caption2=Interval:
227Options2=D,M,W,Y
228Caption3=Amount:
229Caption4=Result Var:
230Default2=D
231Default4=strDate
232Returns=4
233
234[DateDiff]
235Description=Returns the difference between two dates
236NumFields=4
237Caption1=Date1:
238Caption2=Date2:
239Caption3=Interval:
240Options3=D,M,W,Y
241Caption4=Result Var:
242Default3=D
243Default4=intDateDiff
244Returns=4
245
246[DatePart]
247Description=Returns part of a date
248NumFields=3
249Caption1=Date:
250Caption2=Part:
251Options2=D,M,Y
252Caption3=Result Var:
253Default2=D
254Default3=strDatePart
255Returns=3
256
257[DateLocal]
258Description=Given Year, Month and Day portions returns date in system local format
259NumFields=4
260Caption1=Year (YYYY):
261Caption2=Month (MM):
262Caption3=Day (DD):
263Caption4=Result Var:
264Default4=strDate
265Returns=4
266
267[TimeAdd]
268Description=Adds a given interval to a time
269NumFields=4
270Caption1=Time:
271Caption2=Interval:
272Options2=H,M,S
273Caption3=Amount:
274Caption4=Result Var:
275Default2=H
276Default4=strTime
277Returns=4
278
279[TimeDiff]
280Description=Returns the difference between two times
281NumFields=4
282Caption1=Time1:
283Caption2=Time2:
284Caption3=Interval:
285Options3=H,M,S
286Caption4=Result Var:
287Default3=H
288Default5=intTimeDiff
289Returns=4
290
291[TimePart]
292Description=Returns part of a time
293NumFields=3
294Caption1=Time:
295Caption2=Part:
296Options2=H,M,S
297Caption3=Result Var:
298Default2=H
299Default3=strTimePart
300Returns=3
301
302[TimeLocal]
303Description=Given Hour, Minutes and Seconds portions returns time in system local format
304NumFields=4
305Caption1=Hour (HH):
306Caption2=Minute (MM):
307Caption3=Second (SS):
308Caption4=Result Var:
309Default4=strTime
310Returns=4
311
312[GetNewestFile]
313Description=Returns the newest file in a folder
314NumFields=2
315Caption1=Folder Path:
316ButtonType1=10
317Caption2=Result Var:
318Default2=strFileName
319Returns=2
320
321[GetOldestFile]
322Description=Returns the oldest file in a folder
323NumFields=2
324Caption1=Folder Path:
325ButtonType1=10
326Caption2=Result Var:
327Default2=strFileName
328Returns=2
329
330[GetTextPos]
331Description=Returns screen coordinates containing specified text
332NumFields=5
333Caption1=Text To Find:
334Caption2=Left:
335Caption3=Top:
336Caption4=Right:
337Caption5=Bottom
338Default2=intLeft
339Default3=intTop
340Default4=intRight
341Default5=intBottom
342Returns=2;3;4;5
343
344[FindObject]
345Description=Returns handle and bounds of an object given parent handle, classname and index or caption text
346NumFields=10
347Caption1=Parent Handle:
348Caption2=Object Class Name:
349Caption3=Object Caption Text:
350Caption4=Class Index:
351Caption5=Returned Handle:
352Caption6=Left:
353Caption7=Top:
354Caption8=Right:
355Caption9=Bottom:
356Caption10=Returned Text:
357Default5=hWnd
358Default6=intLeft
359Default7=intTop
360Default8=intRight
361Default9=intBottom
362Default10=strText
363Returns=5;6;7;8;9;10
364Mandatory1=1
365Mandatory2=1
366Mandatory5=1
367Mandatory6=1
368Mandatory7=1
369Mandatory8=1
370Mandatory9=1
371Mandatory10=1
372
373[SetObjectText]
374Description=Sets the caption text of an object given its handle
375NumFields=2
376Caption1=Object Handle:
377Caption2=New Text:
378
379[ObjectSendText]
380Description=Sends characters via keyboard messages direct to given control
381NumFields=2
382Caption1=Object Handle:
383Caption2=Text:
384
385[ObjectSendKeys]
386Description=Sends keys direct to given control. Use Send Keys to Object Wizard.
387NumFields=2
388Caption1=Object Handle:
389Caption2=Character/Key List:
390
391[Timer]
392Description=Returns milliseconds elapsed since script was started
393NumFields=1
394Caption1=Result Var:
395Default1=intElapsed
396Returns=1
397
398[GetWindowChildList]
399Description=Returns list of child windows belonging to given handle
400NumFields=2
401Caption1=Handle:
402Caption2=Result Var:
403Default2=strList
404Returns=2
405
406[ColorToRGB]
407Description=Returns Red, Green, Blue components of given Color value
408NumFields=4
409Caption1=Color Value:
410Caption2=Red Var:
411Caption3=Green Var:
412Caption4=Blue Var:
413Default2=intRed
414Default3=intGreen
415Default4=intBlue
416Returns=2;3;4
417
418[RegistryEnumKeys]
419Description=Returns CRLF delimited list of keys in given registry hive
420NumFields=3
421Caption1=Root Key:
422Caption2=Key:
423Caption3=Result Var:
424Default3=strKeys
425Returns=3
426Options=1
427Option1=REG_64
428
429[RegistryEnumVals]
430Description=Returns CRLF delimited list of value names in given registry hive
431NumFields=3
432Caption1=Root Key:
433Caption2=Key:
434Caption3=Result Var:
435Default3=strVals
436Returns=3
437Options=1
438Option1=REG_64
439
440[GetWindowParent]
441Description=Returns parent handle of given handle
442NumFields=3
443Caption1=Handle:
444Caption2=Parent Type:
445Options2=1,2,3
446Caption3=Result Var:
447Returns=3
448Default3=hWnd
449
450[XLSheetToArray]
451Description=Imports an Excel sheet to an array (Excel does not need to be installed)
452NumFields=3
453Caption1=File Name:
454ButtonType1=1
455Caption2=Sheet Name:
456Caption3=Array Name:
457Returns=3
458Default3=sheetArray
459
460[IsConnectedToInternet]
461Description=Determines whether or not the computer is connected to the internet
462NumFields=1
463Caption1=Result Var:
464Default1=isCon
465Returns=1
466
467[ExtractFileName]
468Description=Extracts the name and extension parts from a filename
469NumFields=3
470Caption1=Filename:
471Caption2=Result Var:
472Default2=strFileName
473Caption3=Remove Ext:
474Default3=0
475Mandatory3=0
476ButtonType3=5
477Returns=2
478
479[ExtractFilePath]
480Description=Extracts the path from a filename
481NumFields=2
482Caption1=Filename:
483Caption2=Result Var:
484Default2=strPath
485Returns=2
486
487[ExtractFileExt]
488Description=Extracts the extension from a filename
489NumFields=2
490Caption1=Filename:
491Caption2=Result Var:
492Default2=strExt
493Returns=2
494
495[AddTrayIcon]
496Description=Adds a system tray icon
497NumFields=3
498Caption1=Icon Filename:
499ButtonType1=1
500Caption2=Name:
501Caption3=Hint:
502
503[DelTrayIcon]
504Description=Removes a system tray icon created with AddTrayIcon
505NumFields=1
506Caption1=Name:
507
508[AddTrayHandler]
509Description=Specifies a subroutine to fire on a system tray icon event
510NumFields=3
511Caption1=Name:
512Caption2=Event:
513Caption3=Subroutine:
514
515[AddDialogHandler]
516Description=Creates a dialog event handler for a custom dialog
517NumFields=4
518Caption1=Dialog Name:
519Caption2=Object Name:
520Caption3=Method Name:
521Caption4=Subroutine:
522
523[SetDialogProperty]
524Description=Instantly sets the value of a dialog object property
525NumFields=4
526Caption1=Dialog Name:
527Caption2=Object Name:
528Caption3=Property Name:
529Caption4=Value:
530
531[GetDialogProperty]
532Description=Gets the value of a dialog object property
533NumFields=4
534Caption1=Dialog Name:
535Caption2=Object Name:
536Caption3=Property Name:
537Caption4=Return Value:
538Default4=dlgValue
539Returns=4
540
541[PrintDialog]
542Description=Prints the specified custom dialog to the default printer
543NumFields=2
544Caption1=Dialog Name:
545Caption2=PrintScale:
546
547[GetVarType]
548Description=Retrieves the type of a given variable
549NumFields=2
550Caption1=Variable Name:
551Caption2=Result Var
552Returns=2
553Default2=strTypeName
554
555[XLCreate]
556Description=Creates a new Excel workbook ( Type \Filename after Browse)
557NumFields=3
558Caption1=New Excel File Name:
559ButtonType1=10
560Caption2=Visible:
561ButtonType2=5
562Caption3=Handle Variable:
563Default3=xlBook
564Returns=3
565
566[XLAddSheet]
567Description=Adds a worksheet to an Excel book created with XLCreate/XLOpen
568NumFields=2
569Caption1=XLBook Handle:
570Caption2=Sheet Name:
571
572[XLDelCol]
573Description=Deletes a column from a sheet in an Excel book returned by XLCreate/XLOpen
574NumFields=3
575Caption1=XLBook Handle:
576Caption2=Sheet Name:
577Caption3=Column:
578
579[XLDelRow]
580Description=Deletes a row from a sheet in an Excel book returned by XLCreate/XLOpen
581NumFields=3
582Caption1=XLBook Handle:
583Caption2=Sheet Name:
584Caption3=Row:
585
586[XLDelSheet]
587Description=Deletes a sheet from an Excel book returned by XLCreate/XLOpen
588NumFields=2
589Caption1=XLBook Handle:
590Caption2=Sheet Name:
591
592[XLGet]
593Description=Attaches to and retrieves a reference to an existing Excel instance
594NumFields=2
595Caption1=Book Name:
596Caption2=Result Var:
597Default2=xlBook
598Returns=2
599
600[XLGetCell]
601Description=Retrieves a cell value from a sheet in an Excel book returned by XLCreate/XLOpen
602NumFields=5
603Caption1=XLBook Handle:
604Caption2=Sheet Name:
605Caption3=Row:
606Caption4=Column:
607Caption5=Result Var:
608Default5=strCell
609Returns=5
610
611[XLSetCell]
612Description=Sets a cell value from a sheet in an Excel book returned by XLCreate/XLOpen
613NumFields=6
614Caption1=XLBook Handle:
615Caption2=Sheet Name:
616Caption3=Row:
617Caption4=Column:
618Caption5=Value:
619Caption6=Result Var:
620Default6=scResult
621Returns=6
622
623[XLOpen]
624Description=Opens an Excel workbook
625NumFields=3
626Caption1=Excel File Name:
627ButtonType1=1
628Caption2=Visible:
629ButtonType2=5
630Caption3=Handle Variable:
631Default3=xlBook
632Returns=3
633
634[XLQuit]
635Description=Closes an Excel workbook returned by XLCreate/XLOpen
636NumFields=1
637Caption1=XLBook Handle:
638
639[XLRun]
640Description=Runs a macro in an Excel book returned by XLCreate/XLOpen
641NumFields=2
642Caption1=XLBook Handle:
643Caption2=Macro Name:
644
645[XLSave]
646Description=Saves an Excel workbook returned by XLCreate/XLOpen ( Add \Filename after Browse )
647NumFields=2
648Caption1=XLBook Handle:
649Caption2=Filename:
650ButtonType2=10
651
652[XLGetSheetDims]
653Description=Returns the max cols and rows in a sheet belonging to a book returned by XLCreate/XLOpen
654NumFields=4
655Caption1=XLBook Handle:
656Caption2=Sheet Name:
657Caption3=Max Rows Var:
658Caption4=Max Cols Var:
659Default3=nRowCount
660Default4=nColCount
661Returns=3;4
662
663[XLGetSheetNames]
664Description=Returns list of sheet names belonging to a book returned by XLCreate/XLOpen
665NumFields=2
666Caption1=XLBook Handle:
667Caption2=Result:
668Default2=sNames
669Returns=2
670
671[While]
672Description=Use in conjunction with EndWhile to create a loop
673NumFields=1
674Caption1=Expression:
675
676[EndWhile]
677Description=Marks the end of a While/EndWhile loop
678NumFields=0
679
680[KillProcess]
681Description=Terminates a process
682NumFields=1
683Caption1=Process Name/ID:
684
685[ProcessExists]
686Description=Check if a process exists or not
687NumFields=2
688Caption1=Process Name:
689Caption2=Result Var:
690Default2=bExists
691Returns=2
692
693[GetProcessIDs]
694Description=Get list of process IDs for given process
695NumFields=2
696Caption1=Process Name:
697Caption2=Result Array:
698Default2=arrPIds
699Returns=2
700
701[WaitProcessExists]
702Description=Waits for a process to exist
703NumFields=1
704Caption1=Process Name:
705Options=1
706Option1=WFP_TIMEOUT
707
708[WaitProcessTerminated]
709Description=Waits for a process to be nonexistent
710NumFields=1
711Caption1=Process Name:
712Options=1
713Option1=WFP_TIMEOUT
714
715[ArrayCount]
716Description=Returns number of elements in an array
717NumFields=2
718Caption1=Array Name:
719Caption2=Result Var:
720Default2=nCount
721Returns=2
722
723[ArraySort]
724Description=Sorts given array
725NumFields=1
726Caption1=Array Name:
727
728[LabelToVar]
729Description=Reads data label into variable
730NumFields=5
731Caption1=Label Name:
732Caption2=Variable Name:
733Caption3=Want Line Breaks (1/0):
734Default3=1
735Caption4=Ignore Variables (1/0):
736Default4=0
737Caption5=End Token:
738Default5={"*/"}
739ButtonType3=5
740ButtonType4=5
741Returns=2
742
743[IncludeFromVar]
744Description=Includes and executes code contined in a variable
745NumFields=1
746Caption1=Variable Name:
747
748[SkipLabel]
749Description=Forces execution to jump to given label after subroutine has exited
750NumFields=1
751Caption1=Label Name:
752
753
754[CSVFileToArray]
755Description=Imports CSV File to an Array
756NumFields=2
757Caption1=CSV File:
758ButtonType1=1
759Mandatory1=1
760Caption2=Array Variable:
761Default2=arrCSV
762Returns=2
763
764[GetFocusedObject]
765Description=Retrieves Handle of Focused Object
766NumFields=1
767Caption1=Result Variable:
768Default1=
769ButtonType1=0
770Mandatory1=1
771Default1=hWnd
772Returns=1
773LITE=NO
774GAME=NO
775
776[GetClipBoard]
777Description=Retrieves Clipboard contents
778NumFields=2
779Caption1=Result Variable:
780Caption2=Format:
781Default1=
782Default2=0
783ButtonType1=0
784Mandatory1=1
785Default1=strClipText
786Returns=1
787
788[PutClipBoard]
789Description=Puts text on Clipboard
790NumFields=1
791Caption1=Text or Variable:
792Default1=
793ButtonType1=0
794Mandatory1=1
795
796[WaitClipBoard]
797Description=Waits for Clipboard to be ready for access
798NumFields=0
799
800[Day]
801Description=Returns current day number of month
802NumFields=1
803Caption1=Result Variable:
804Default1=
805ButtonType1=0
806Mandatory1=1
807Default1=nDayOfMonth
808Returns=1
809
810[DayOfWeek]
811Description=Returns the current week day number
812NumFields=1
813Caption1=Result Variable:
814Default1=
815ButtonType1=0
816Mandatory1=1
817Default1=nWeekDay
818Returns=1
819
820[GetDate]
821Description=Returns the current date
822NumFields=1
823Caption1=Result Variable:
824Default1=
825ButtonType1=0
826Mandatory1=1
827Default1=strCurDate
828Returns=1
829
830[GetTime]
831NumFields=1
832Description=Returns the current time
833Caption1=Result Variable:
834Default1=
835ButtonType1=0
836Mandatory1=1
837Default1=strCurTime
838Returns=1
839
840[Hour]
841NumFields=1
842Description=Returns hour portion of current time
843Caption1=Result Variable:
844Default1=
845ButtonType1=0
846Mandatory1=1
847Default1=nHour
848Returns=1
849
850[Min]
851NumFields=1
852Description=Returns minute portion of current time
853Caption1=Result Variable:
854Default1=
855ButtonType1=0
856Mandatory1=1
857Default1=nMin
858Returns=1
859
860[Month]
861NumFields=1
862Description=Returns Month portion of current date
863Caption1=Result Variable:
864Default1=
865ButtonType1=0
866Mandatory1=1
867Default1=nMonth
868Returns=1
869
870[Sec]
871NumFields=1
872Description=Returns seconds portion of current time
873Caption1=Result Variable:
874Default1=
875ButtonType1=0
876Mandatory1=1
877Default1=nSec
878Returns=1
879
880[Year]
881NumFields=1
882Description=Returns year portion of current date
883Caption1=Result Variable:
884Default1=
885ButtonType1=0
886Mandatory1=1
887Default1=nYear
888Returns=1
889
890[DDEPoke]
891NumFields=4
892Description=Pokes data to a DDE server
893Caption1=Server:
894Default1=
895ButtonType1=0
896Mandatory1=1
897Caption2=Topic:
898Default2=
899ButtonType2=0
900Mandatory2=1
901Caption3=Item:
902Default3=
903ButtonType3=0
904Mandatory3=1
905Caption4=Data:
906Default4=
907ButtonType4=0
908Mandatory4=1
909
910[DDERequest]
911Description=Requests data from a DDE server
912NumFields=5
913Caption1=Server:
914Default1=
915ButtonType1=0
916Mandatory1=1
917Caption2=Topic:
918Default2=
919ButtonType2=0
920Mandatory2=1
921Caption3=Item:
922Default3=
923ButtonType3=0
924Mandatory1=1
925Caption4=Result Variable:
926ButtonType4=0
927Mandatory4=1
928Caption5=Timeout (Seconds):
929Default5=10
930ButtonType5=0
931Mandatory5=1
932Default4=strData
933Returns=4
934
935[CloseDialog]
936Description=Closes non-modal dialog
937Numfields=1
938Caption1=Dialog Name:
939Default1=
940ButtonType1=0
941Mandatory1=1
942LITE=NO
943GAME=NO
944
945[Dialog]
946Description=Marks the start of a dialog block
947Numfields=1
948Caption1=Dialog Name:
949Default1=
950ButtonType1=0
951Mandatory1=1
952LITE=NO
953GAME=NO
954
955[EndDialog]
956Description=Marks the end of a dialog block
957Numfields=1
958Caption1=Dialog Name:
959Default1=
960ButtonType1=0
961Mandatory1=1
962LITE=NO
963GAME=NO
964
965[GetDialogAction]
966Description=Retrieves the values of all objects
967Numfields=2
968Caption1=Dialog Name:
969Default1=
970ButtonType1=0
971Mandatory1=1
972Caption2=Result Variable:
973ButtonType2=0
974Mandatory2=1
975Default2=nDlgResult
976Returns=2
977LITE=NO
978GAME=NO
979
980[ResetDialogAction]
981Description=Sets the result of the dialog back to zero
982Numfields=1
983Caption1=Dialog Name:
984Default1=
985ButtonType1=0
986Mandatory1=1
987LITE=NO
988GAME=NO
989
990[Show]
991Description=Displays a dialog
992Numfields=2
993Caption1=Dialog Name:
994Default1=
995ButtonType1=0
996Mandatory1=1
997Caption2=Result Var:
998Default2=
999ButtonType2=0
1000Mandatory2=1
1001LITE=NO
1002GAME=NO
1003Returns=2
1004
1005[AppendFile]
1006Description=Appends sourcefile1 and sourcefile2 into new file
1007Numfields=4
1008Caption1=Sourcefile 1:
1009Default1=
1010ButtonType1=1
1011Mandatory1=1
1012Caption2=Sourcefile 2:
1013Default2=
1014ButtonType2=1
1015Mandatory2=1
1016Caption3=New File:
1017Default3=
1018ButtonType3=1
1019Mandatory3=1
1020Caption4=Result:
1021Default4=
1022ButtonType4=0
1023Mandatory4=1
1024Returns=4
1025
1026[ChangeDirectory]
1027Description=Changes the current directory
1028Numfields=1
1029ButtonType1=10
1030Caption1=Path:
1031Default1=
1032ButtonType1=0
1033Mandatory1=1
1034
1035[CopyFile]
1036Description=Copies File to Destination File
1037Numfields=2
1038Caption1=Source File:
1039Default1=
1040ButtonType1=1
1041Mandatory1=1
1042Caption2=Destination File:
1043ButtonType2=10
1044Default2=
1045ButtonType2=0
1046Mandatory2=1
1047Options=1
1048Option1=CF_OVERWRITE
1049
1050[CopyFolder]
1051Description=Copies Folder to Destination File
1052Numfields=2
1053Caption1=Source Folder:
1054Default1=
1055ButtonType1=10
1056Mandatory1=1
1057Caption2=Destination Folder:
1058ButtonType2=10
1059Default2=
1060ButtonType2=0
1061Mandatory2=1
1062Options=1
1063Option1=CF_OVERWRITE
1064
1065
1066[CountFiles]
1067Description=Returns the number of files matching file_spec in the result variable
1068Numfields=3
1069Caption1=File Spec ( Add \*.* ):
1070ButtonType1=10
1071Default1=
1072ButtonType=0
1073Mandatory1=1
1074Caption2=Result:
1075Default2=nCount
1076ButtonType2=0
1077Mandatory2=1
1078Caption3=Sub Dir Flag:
1079Default3=0
1080ButtonType3=5
1081Mandatory3=1
1082Returns=2
1083
1084
1085[CountDirs]
1086Description=Returns the number of directories matching file_spec in the result variable
1087Numfields=3
1088Caption1=File Spec:
1089ButtonType1=10
1090Default1=
1091ButtonType=0
1092Mandatory1=1
1093Caption2=Result:
1094Default2=nCount
1095ButtonType2=0
1096Mandatory2=1
1097Caption3=Sub Dir Flag:
1098Default3=0
1099ButtonType3=5
1100Mandatory3=1
1101Returns=2
1102
1103
1104[CreateDir]
1105Description=Creates a new directory Browse and Add \Directoryname
1106Numfields=1
1107Caption1=Directory:
1108ButtonType1=10
1109Default1=
1110ButtonType1=0
1111Mandatory1=1
1112
1113[DeleteFile]
1114Description=Deletes the file/files in filename
1115Numfields=1
1116Caption1=File Name:
1117ButtonType1=1
1118Default1=
1119ButtonType1=0
1120Mandatory1=1
1121
1122[DeleteFolder]
1123Description=Deletes a folder
1124Numfields=1
1125Caption1=Folder Path:
1126ButtonType1=10
1127Default1=
1128ButtonType1=0
1129Mandatory1=1
1130
1131
1132[EditIniFile]
1133Description=Edits a section entry in an ini file
1134Numfields=4
1135Caption1=INI File:
1136ButtonType1=1
1137Default1=
1138ButtonType1=0
1139Mandatory1=1
1140Caption2=Section Name:
1141Default2=
1142ButtonType2=0
1143Mandatory2=1
1144Caption3=Entry Name:
1145Default3=
1146ButtonType3=0
1147Mandatory3=1
1148Caption4=New Value:
1149Default4=
1150ButtonType4=0
1151Mandatory4=1
1152
1153[FileDate]
1154Description=Returns file date of given file
1155Numfields=2
1156Caption1=File Path:
1157Default1=
1158ButtonType1=1
1159Mandatory1=1
1160Caption2=Result Variable:
1161Default2=dFileDate
1162Default1=
1163ButtonType1=0
1164Mandatory1=1
1165Returns=2
1166
1167[FileSize]
1168Description=Returns size of given file
1169Numfields=2
1170Caption1=File Path:
1171Default1=
1172ButtonType1=1
1173Mandatory1=1
1174Caption2=Result Variable:
1175Default1=
1176ButtonType1=0
1177Mandatory1=1
1178Default2=nFileSize
1179Returns=2
1180
1181[FileTime]
1182Description=Returns file time of given file
1183Numfields=2
1184Caption1=File Path:
1185Default1=
1186ButtonType1=1
1187Mandatory1=1
1188Caption2=Result Variable:
1189Default1=
1190ButtonType1=0
1191Mandatory1=1
1192Default2=strFileTime
1193Returns=2
1194
1195[GetFileList]
1196Description=Returns list of files matching file spec
1197Numfields=3
1198Caption1=File Spec:
1199ButtonType1=10
1200Default1=
1201ButtonType1=0
1202Mandatory1=1
1203Caption2=Result Variable:
1204ButtonType2=0
1205Mandatory2=1
1206Caption3=Delimiter:
1207Default3=;
1208ButtonType3=0
1209Mandatory3=0
1210Options=2
1211Option1=GFL_TYPE
1212Option2=GFL_SORTTYPE
1213Default2=strFileList
1214Returns=2
1215
1216[IfDirExists]
1217Description=If Directory Exists. Use labels or block EndIf
1218NumFields=3
1219Caption1=Directory Name:
1220ButtonType1=10
1221Default1=
1222ButtonType1=0
1223Mandatory1=1
1224Caption2=True Label (Optional):
1225Default2=
1226ButtonType2=0
1227Mandatory2=0
1228Caption3=False Label (Optional):
1229Default3=
1230ButtonType3=0
1231Mandatory3=0
1232
1233[IfNotDirExists]
1234Description=If Directory Does Not Exist. Use labels or block EndIf
1235NumFields=3
1236Caption1=Directory Name:
1237ButtonType1=10
1238Default1=
1239ButtonType1=0
1240Mandatory1=1
1241Caption2=True Label (Optional):
1242Default2=
1243ButtonType2=0
1244Mandatory2=0
1245Caption3=False Label (Optional):
1246Default3=
1247ButtonType3=0
1248Mandatory3=0
1249
1250[IfFileChanged]
1251Description=If File Changed in range. Use labels or block EndIf
1252NumFields=4
1253Caption1=File Path:
1254Default1=
1255ButtonType1=1
1256Mandatory1=1
1257Caption2=Day Range:
1258Default2=
1259ButtonType2=0
1260Mandatory2=1
1261Caption3=True Label (Optional):
1262Default3=
1263ButtonType3=0
1264Mandatory3=0
1265Caption4=False Label (Optional):
1266Default4=
1267ButtonType4=0
1268Mandatory4=0
1269
1270
1271[IfNotFileChanged]
1272Description=If File Not Changed in range. Use labels or block EndIf
1273NumFields=4
1274Caption1=File Path:
1275Default1=
1276ButtonType1=1
1277Mandatory1=1
1278Caption2=Day Range:
1279Default2=
1280ButtonType2=0
1281Mandatory2=1
1282Caption3=True Label (Optional):
1283Default3=
1284ButtonType3=0
1285Mandatory3=0
1286Caption4=False Label (Optional):
1287Default4=
1288ButtonType4=0
1289Mandatory4=0
1290
1291[IfFileExists]
1292Description=If File Exists. Use labels or block EndIf
1293NumFields=3
1294Caption1=File Path:
1295Default1=
1296ButtonType1=1
1297Mandatory1=1
1298Caption2=True Label (Optional):
1299Default2=
1300ButtonType2=0
1301Mandatory2=0
1302Caption3=False Label (Optional):
1303Default3=
1304ButtonType3=0
1305Mandatory3=0
1306
1307[IfNotFileExists]
1308Description=If File Does Noy Exist. Use labels or block EndIf
1309NumFields=3
1310Caption1=File Path:
1311Default1=
1312ButtonType1=1
1313Mandatory1=1
1314Caption2=True Label (Optional):
1315Default2=
1316ButtonType2=0
1317Mandatory2=0
1318Caption3=False Label (Optional):
1319Default3=
1320ButtonType3=0
1321Mandatory3=0
1322
1323[MoveFile]
1324Description=Moves source file to destination ( Add \Filename to destination )
1325NumFields=2
1326Caption1=Source File Spec:
1327Default1=
1328ButtonType1=1
1329Mandatory1=1
1330Caption2=Destination:
1331ButtonType2=10
1332Default2=
1333ButtonType2=0
1334Mandatory2=1
1335Options=1
1336Option1=MF_RENAME
1337
1338[RenameFile]
1339Description=Renames file (Same as MoveFile with MF_RENAME=1)
1340NumFields=2
1341Caption1=File Spec:
1342Default1=
1343ButtonType1=1
1344Mandatory1=1
1345Caption2=New File:
1346Default2=
1347ButtonType2=0
1348Mandatory2=1
1349
1350[ReadFile]
1351Description=Reads text file into variable
1352NumFields=2
1353Caption1=File Path:
1354Default1=
1355ButtonType1=1
1356Mandatory1=1
1357Caption2=Result Variable:
1358ButtonType2=0
1359Mandatory2=1
1360Default2=strFileContents
1361Returns=2
1362
1363[ReadIniFile]
1364Description=Reads value from INI file
1365NumFields=4
1366Caption1=INI File:
1367Default1=
1368ButtonType1=1
1369Mandatory1=1
1370Caption2=Section Name:
1371Default2=
1372ButtonType2=0
1373Mandatory2=1
1374Caption3=Entry Name:
1375Default3=
1376ButtonType3=0
1377Mandatory3=1
1378Caption4=Result Variable:
1379ButtonType4=0
1380Mandatory4=1
1381Default4=strValue
1382Returns=4
1383
1384[ReadLn]
1385Description=Read line from text file
1386NumFields=3
1387Caption1=File Path:
1388ButtonType1=1
1389Default1=
1390ButtonType1=0
1391Mandatory1=1
1392Caption2=Line Number:
1393Default2=
1394ButtonType2=0
1395Mandatory2=1
1396Caption3=Result Variable:
1397ButtonType3=0
1398Mandatory3=1
1399Default3=strLine
1400Returns=3
1401
1402[WriteLn]
1403Description=Writes line to text file
1404NumFields=3
1405Caption1=File Path:
1406ButtonType1=1
1407Default1=
1408ButtonType1=0
1409Mandatory1=1
1410Caption2=Result Variable:
1411ButtonType2=0
1412Mandatory2=1
1413Caption3=Text to Write:
1414Default3=
1415ButtonType3=0
1416Mandatory3=1
1417Default2=nWLNRes
1418Returns=2
1419Options=1
1420Option1=WLN_NOCRLF
1421
1422[FTPDelFile]
1423Description=Delete file from FTP server
1424NumFields=5
1425Caption1=Server Name/Address:
1426Default1=
1427ButtonType1=0
1428Mandatory1=1
1429Caption2=Username:
1430Default2=
1431ButtonType2=0
1432Mandatory2=1
1433Caption3=Password:
1434Default3=
1435ButtonType3=0
1436Mandatory3=1
1437Caption4=Port Number:
1438Default4=21
1439ButtonType4=0
1440Mandatory4=1
1441Caption5=Host File:
1442Default5=
1443ButtonType5=0
1444Mandatory5=1
1445Options=2
1446Option1=FTP_STATUS
1447Option2=FTP_TIMEOUT
1448LITE=NO
1449GAME=NO
1450
1451[FTPRemoveDir]
1452Description=Remove Directory from FTP server
1453NumFields=5
1454Caption1=Server Name/Address:
1455Default1=
1456ButtonType1=0
1457Mandatory1=1
1458Caption2=Username:
1459Default2=
1460ButtonType2=0
1461Mandatory2=1
1462Caption3=Password:
1463Default3=
1464ButtonType3=0
1465Mandatory3=1
1466Caption4=Port Number:
1467Default4=21
1468ButtonType4=0
1469Mandatory4=1
1470Caption5=Host Dir:
1471Default5=
1472ButtonType5=0
1473Mandatory5=1
1474Options=2
1475Option1=FTP_STATUS
1476Option2=FTP_TIMEOUT
1477LITE=NO
1478GAME=NO
1479
1480[FTPMakeDir]
1481Description=Create Directory on FTP server
1482NumFields=5
1483Caption1=Server Name/Address:
1484Default1=
1485ButtonType1=0
1486Mandatory1=1
1487Caption2=Username:
1488Default2=
1489ButtonType2=0
1490Mandatory2=1
1491Caption3=Password:
1492Default3=
1493ButtonType3=0
1494Mandatory3=1
1495Caption4=Port Number:
1496Default4=21
1497ButtonType4=0
1498Mandatory4=1
1499Caption5=Host Dir:
1500Default5=
1501ButtonType5=0
1502Mandatory5=1
1503Options=2
1504Option1=FTP_STATUS
1505Option2=FTP_TIMEOUT
1506LITE=NO
1507GAME=NO
1508
1509[FTPGetDirList]
1510Description=Gets list of files from FTP server
1511NumFields=8
1512Caption1=Server Name/Address:
1513Default1=
1514ButtonType1=0
1515Mandatory1=1
1516Caption2=Username:
1517Default2=
1518ButtonType2=0
1519Mandatory2=1
1520Caption3=Password:
1521Default3=
1522ButtonType3=0
1523Mandatory3=1
1524Caption4=Port Number:
1525Default4=21
1526ButtonType4=0
1527Mandatory4=1
1528Caption5=Local File:
1529Default5=
1530ButtonType5=0
1531Mandatory5=1
1532Caption6=Host Dir:
1533Default6=
1534ButtonType6=0
1535Mandatory6=1
1536Caption7=Host File Spec:
1537Default7=
1538ButtonType7=0
1539Mandatory7=1
1540Caption8=Mode (D/L):
1541Default8=D
1542ButtonType8=0
1543Mandatory8=1
1544Options=6
1545Option1=FTP_STATUS
1546Option2=FTP_TIMEOUT
1547Option3=FTP_USETLS
1548Option4=SSL_CERT
1549Option5=SSL_ROOT_CERT
1550Option6=SSL_KEY
1551LITE=NO
1552GAME=NO
1553
1554[FTPGetFile]
1555Description=Gets file from FTP server
1556NumFields=8
1557Caption1=Server Name/Address:
1558Default1=
1559ButtonType1=0
1560Mandatory1=1
1561Caption2=Username:
1562Default2=
1563ButtonType2=0
1564Mandatory2=1
1565Caption3=Password:
1566Default3=
1567ButtonType3=0
1568Mandatory3=1
1569Caption4=Port Number:
1570Default4=21
1571ButtonType4=0
1572Mandatory4=1
1573Caption5=Local File:
1574Default5=
1575ButtonType5=0
1576Mandatory5=1
1577Caption6=Host Dir:
1578Default6=
1579ButtonType6=0
1580Mandatory6=1
1581Caption7=Host File:
1582Default7=
1583ButtonType7=0
1584Mandatory7=1
1585Caption8=Mode (A/I):
1586Default8=I
1587ButtonType8=0
1588Mandatory8=1
1589Options=6
1590Option1=FTP_STATUS
1591Option2=FTP_TIMEOUT
1592Option3=FTP_USETLS
1593Option4=SSL_CERT
1594Option5=SSL_ROOT_CERT
1595Option6=SSL_KEY
1596LITE=NO
1597GAME=NO
1598
1599[FTPPutFile]
1600Description=Copies file to FTP server
1601NumFields=8
1602Caption1=Server Name/Address:
1603Default1=
1604ButtonType1=0
1605Mandatory1=1
1606Caption2=Username:
1607Default2=
1608ButtonType2=0
1609Mandatory2=1
1610Caption3=Password:
1611Default3=
1612ButtonType3=0
1613Mandatory3=1
1614Caption4=Port Number:
1615Default4=21
1616ButtonType4=0
1617Mandatory4=1
1618Caption5=Local File:
1619Default5=
1620ButtonType5=0
1621Mandatory5=1
1622Caption6=Host Dir:
1623Default6=
1624ButtonType6=0
1625Mandatory6=1
1626Caption7=Host File:
1627Default7=
1628ButtonType7=0
1629Mandatory7=1
1630Caption8=Mode (A/I):
1631Default8=I
1632ButtonType8=0
1633Mandatory8=1
1634Options=6
1635Option1=FTP_STATUS
1636Option2=FTP_TIMEOUT
1637Option3=FTP_USETLS
1638Option4=SSL_CERT
1639Option5=SSL_ROOT_CERT
1640Option6=SSL_KEY
1641LITE=NO
1642GAME=NO
1643
1644[FTPRenameFile]
1645Description=Renames file on FTP server
1646NumFields=6
1647Caption1=Server Name/Address:
1648Default1=
1649ButtonType1=0
1650Mandatory1=1
1651Caption2=Username:
1652Default2=
1653ButtonType2=0
1654Mandatory2=1
1655Caption3=Password:
1656Default3=
1657ButtonType3=0
1658Mandatory3=1
1659Caption4=Port Number:
1660Default4=21
1661ButtonType4=0
1662Mandatory4=1
1663Caption5=Host File Spec:
1664Default5=
1665ButtonType5=0
1666Mandatory5=1
1667Caption6=New File Name:
1668Default6=
1669ButtonType6=0
1670Mandatory6=1
1671Options=2
1672Option1=FTP_STATUS
1673Option2=FTP_TIMEOUT
1674LITE=NO
1675GAME=NO
1676
1677[HTTPRequest]
1678Description=Performs an HTTP (Web) Request
1679NumFields=9
1680Caption1=URL:
1681Default1=
1682ButtonType1=0
1683Mandatory1=1
1684Caption2=Local File:
1685Default2=
1686ButtonType2=0
1687Mandatory2=0
1688Caption3=Method (POST/GET):
1689Default3=
1690ButtonType3=0
1691Mandatory3=1
1692Caption4=Post Data:
1693Default4=
1694ButtonType4=0
1695Mandatory4=1
1696Caption5=Result Variable:
1697ButtonType5=0
1698Mandatory5=1
1699Caption6=Proxy Server:
1700Default6=
1701ButtonType6=0
1702Mandatory6=1
1703Caption7=Proxy Port:
1704Default7=
1705ButtonType7=0
1706Mandatory7=1
1707Caption8=Proxy Username:
1708Default8=
1709ButtonType8=0
1710Mandatory8=1
1711Caption9=Proxy Password:
1712Default9=
1713ButtonType9=0
1714Mandatory9=1
1715Options=3
1716Option1=HTTP_TIMEOUT
1717Option2=HTTP_REDIRECTS
1718Option3=HTTP_SSL
1719Default5=strHTML
1720Returns=5
1721LITE=NO
1722GAME=NO
1723
1724[RetrievePOP3]
1725Description=Retrieves mail from POP3 server
1726NumFields=4
1727Caption1=Server:
1728Default1=
1729ButtonType1=0
1730Mandatory1=1
1731Caption2=Username:
1732Default2=
1733ButtonType2=0
1734Mandatory2=1
1735Caption3=Password:
1736Default3=
1737ButtonType3=0
1738Mandatory3=1
1739Caption4=Output Path:
1740Default4=
1741ButtonType4=0
1742Mandatory4=1
1743Options=5
1744Option1=POP3_STATUS
1745Option2=POP3_PORT
1746Option3=POP3_TIMEOUT
1747Option4=POP3_DELETE
1748Option5=POP3_MSGSIZELIMIT
1749LITE=NO
1750GAME=NO
1751
1752[SMTPSendMail]
1753Description=Sends mail via SMTP Server
1754NumFields=7
1755Caption1=Recipients:
1756Default1=
1757ButtonType1=0
1758Mandatory1=1
1759Caption2=Server:
1760Default2=
1761ButtonType2=0
1762Mandatory2=1
1763Caption3=From Address:
1764Default3=
1765ButtonType3=0
1766Mandatory3=1
1767Caption4=From Name:
1768Default4=
1769ButtonType4=0
1770Mandatory4=1
1771Caption5=Subject:
1772Default5=
1773ButtonType5=0
1774Mandatory5=1
1775Caption6=Body:
1776Default6=
1777ButtonType6=0
1778Mandatory6=1
1779Caption7=Attachments
1780Default7=
1781ButtonType7=0
1782Mandatory7=0
1783Options=8
1784Option1=SENDMAIL_STATUS
1785Option2=SMTP_CCLIST
1786Option3=SMTP_BCCLIST
1787Option4=SMTP_AUTH
1788Option5=SMTP_USERID
1789Option6=SMTP_PASSWORD
1790Option7=SMTP_RECEIPT
1791OPtion8=SMTP_PORT
1792LITE=NO
1793GAME=NO
1794
1795[If]
1796Description=Logical expression. Use labels or Block EndIf
1797Numfields=3
1798Caption1=Expression:
1799Default1=
1800ButtonType1=0
1801Mandatory1=1
1802Caption2=True Label (Optional):
1803Default2=
1804ButtonType2=0
1805Mandatory2=0
1806Caption3=False Label (Optional):
1807Default3=
1808ButtonType3=0
1809Mandatory3=0
1810
1811[IfNot]
1812Description=Logical expression. Use labels or Block EndIf
1813Numfields=3
1814Caption1=Expression:
1815Default1=
1816ButtonType1=0
1817Mandatory1=1
1818Caption2=True Label (Optional):
1819Default2=
1820ButtonType2=0
1821Mandatory2=0
1822Caption3=False Label (Optional):
1823Default3=
1824ButtonType3=0
1825Mandatory3=0
1826
1827[IfWindowOpen]
1828Description=Checks if specified window open. Use labels or Block EndIf
1829NumFields=3
1830Caption1=Window Title:
1831Default1=
1832ButtonType1=2
1833Mandatory1=1
1834Caption2=True Label (Optional):
1835Default2=
1836ButtonType2=0
1837Mandatory2=0
1838Caption3=False Label (Optional):
1839Default3=
1840ButtonType3=0
1841Mandatory3=0
1842Options=3
1843Option1=WIN_USEHANDLE
1844Option2=WF_TYPE
1845Option3=WIN_REGEX
1846
1847[IfNotWindowOpen]
1848Description=Checks if specified NOT window open. Use labels or Block EndIf
1849NumFields=3
1850Caption1=Window Title:
1851Default1=
1852ButtonType1=2
1853Mandatory1=1
1854Caption2=False Label (Optional):
1855Default2=
1856ButtonType2=0
1857Mandatory2=0
1858Caption3=True Label (Optional):
1859Default3=
1860ButtonType3=0
1861Mandatory3=0
1862Options=3
1863Option1=WIN_USEHANDLE
1864Option2=WF_TYPE
1865Option3=WIN_REGEX
1866
1867
1868[Ascii]
1869Description=Inserts characters specified by ASCII codes.
1870NumFields=1
1871Caption1=ASCII Code List:
1872Default1=
1873Mandatory1=1
1874ButtonType1=0
1875
1876[CapsOff]
1877Description=Switches Caps lock off.
1878NumFields=0
1879
1880[CapsOn]
1881Description=Switches Caps lock on.
1882NumFields=0
1883
1884[NumOff]
1885Description=Switches Num lock off.
1886NumFields=0
1887
1888[NumOn]
1889Description=Switches Num lock on.
1890NumFields=0
1891
1892[Press]
1893Description=Presses non-character key.
1894NumFields=1
1895Caption1=Key:
1896Default1=
1897ButtonType1=3
1898Mandatory1=1
1899Options=1
1900Option1=SK_LEGACY
1901
1902[Release]
1903Description=Releases modified key.
1904NumFields=1
1905Caption1=Key:
1906Default1=
1907ButtonType1=4
1908Mandatory1=1
1909
1910[ScrollOff]
1911Description=Switches Scroll lock off.
1912NumFields=0
1913
1914[ScrollOn]
1915Description=Switches Scroll lock on.
1916NumFields=0
1917
1918[SendText]
1919Description=Sends specified text to focused window.
1920NumFields=1
1921Caption1=Text:
1922Default1=
1923ButtonType1=0
1924Mandatory1=1
1925Options=2
1926Option1=SK_DELAY
1927Option2=SK_IGNORECAPS
1928
1929[Send]
1930Description=Sends specified text to focused window.
1931NumFields=1
1932Caption1=Text:
1933Default1=
1934ButtonType1=0
1935Mandatory1=1
1936Options=2
1937Option1=SK_DELAY
1938Option1=SK_IGNORECAPS
1939
1940[WaitKeyDown]
1941Description=Pauses execution until specified key is pressed.
1942NumFields=1
1943Caption1=Key/Virtual Key Code:
1944Default1=
1945ButtonType1=0
1946Mandatory1=1
1947
1948[Ask]
1949Description=Displays Yes/No Dialog.
1950NumFields=2
1951Caption1=Prompt:
1952ButtonType1=0
1953Mandatory1=1
1954Default1=
1955Caption2=Result Variable:
1956Mandatory2=1
1957ButtonType2=0
1958Options=1
1959Option1=ASK_TIMEOUT
1960Default2=strResponse
1961Returns=2
1962
1963[Input]
1964Description=Prompts for info from user.
1965NumFields=3
1966Caption1=Result Variable:
1967ButtonType1=0
1968Mandatory1=1
1969Caption2=Prompt:
1970Default2=
1971Mandatory2=1
1972ButtonType2=0
1973Caption3=Default Value:
1974Default3=
1975Mandatory3=0
1976ButtonType3=0
1977Options=3
1978Option1=INPUT_TIMEOUT
1979Option2=INPUT_PASSWORD
1980Option3=INPUT_BROWSE
1981Default1=strInputResult
1982Returns=1
1983
1984[Message]
1985Description=Displays a non-modal message box.
1986NumFields=1
1987Caption1=Message:
1988ButtonType1=0
1989Mandatory1=1
1990Default1=
1991Options=6
1992Option1=MSG_STAYONTOP
1993Option2=MSG_CENTERED
1994Option3=MSG_XPOS
1995Option4=MSG_YPOS
1996Option5=MSG_HEIGHT
1997Option6=MSG_WIDTH
1998
1999[MessageModal]
2000Description=Displays a modal message box.
2001NumFields=1
2002Caption1=Message:
2003ButtonType1=0
2004Mandatory1=1
2005Default1=
2006Options=6
2007Option1=MSG_STAYONTOP
2008Option2=MSG_CENTERED
2009Option3=MSG_XPOS
2010Option4=MSG_YPOS
2011Option5=MSG_HEIGHT
2012Option6=MSG_WIDTH
2013
2014[Assigned]
2015Description=Determine if variable has been assigned.
2016NumFields=2
2017Caption1=Variable Name:
2018ButtonType1=0
2019Mandatory1=1
2020Default1=
2021Caption2=Result:
2022ButtonType2=0
2023Mandatory2=1
2024Default2=isAssigned
2025Returns=2
2026
2027[BlockInput]
2028Description=Prevents or enabled keyboard and mouse user input.
2029NumFields=1
2030Caption1=Block [1/0]:
2031ButtonType1=5
2032Mandatory1=1
2033Default1=1
2034
2035[DateStamp]
2036Description=Outputs date, time and comment to text file.
2037NumFields=2
2038Caption1=Filename:
2039Default1=
2040Mandatory1=1
2041ButtonType1=1
2042Caption2=Comment:
2043Default2=
2044Mandatory2=0
2045ButtonType2=0
2046
2047[GetCheckBox]
2048Description=Gets state of checkbox.
2049NumFields=3
2050Caption1=Window Title:
2051Default1=
2052Mandatory1=1
2053ButtonType1=2
2054Caption2=Object Caption:
2055Default2=
2056Mandatory2=1
2057ButtonType2=0
2058Caption3=Result Variable:
2059Mandatory3=1
2060ButtonType3=0
2061Default3=bChecked
2062Returns=3
2063Options=3
2064Option1=WF_TYPE
2065Option2=WIN_USEHANDLE
2066Option3=WIN_REGEX
2067
2068[GetControlText]
2069Description=Returns text associated with specified control.
2070NumFields=4
2071Caption1=Window Title:
2072Default1=
2073Mandatory1=1
2074ButtonType1=2
2075Caption2=Class Name:
2076Default2=
2077Mandatory2=1
2078ButtonType2=0
2079Caption3=Instance:
2080Default3=1
2081Mandatory3=1
2082ButtonType3=0
2083Caption4=Result Variable:
2084Default3=0
2085Mandatory3=1
2086ButtonType3=0
2087Options=3
2088Option1=WF_TYPE
2089Option2=WIN_USEHANDLE
2090Option3=WIN_REGEX
2091Default4=strText
2092Returns=4
2093
2094[GetEnvVar]
2095Description=Get value of environment variable.
2096NumFields=2
2097Caption1=Environment Variable:
2098Default1=
2099Mandatory1=1
2100ButtonType1=0
2101Caption2=Result Variable:
2102Mandatory2=1
2103ButtonType2=0
2104Default2=strEnvVar
2105Returns=2
2106
2107[GetListItem]
2108Description=Returns index of text in listview.
2109NumFields=9
2110Caption1=Window Title:
2111Default1=
2112Mandatory1=1
2113ButtonType1=2
2114Caption2=Class Name:
2115Default2=
2116Mandatory2=1
2117ButtonType2=0
2118Caption3=Instance:
2119Default3=
2120Mandatory3=1
2121ButtonType3=0
2122Caption4=Text:
2123Default4=
2124Mandatory4=1
2125ButtonType4=0
2126Caption5=Column:
2127Default5=
2128Mandatory5=1
2129ButtonType5=0
2130Caption6=Case Sensitive [1/0]:
2131ButtonType6=5
2132Default6=0
2133Caption7=Partial Match [1/0]:
2134ButtonTYpe7=5
2135Default7=0
2136Caption8=Result Variable:
2137Caption9=Handle:
2138Default8=nIndex
2139Returns=8
2140Options=3
2141Option1=WF_TYPE
2142Option2=WIN_USEHANDLE
2143Option3=WIN_REGEX
2144
2145[GetPixelColor]
2146Description=Returns pixel color at specified screen coordinate.
2147NumFields=3
2148Caption1=X Coord:
2149Caption2=Y Coord:
2150Caption3=Result Variable:
2151Default3=nColor
2152Returns=3
2153
2154[GetRectCheckSum]
2155Description=Returns checksum of screen area.
2156NumFields=5
2157Caption1=Top Left X:
2158Caption2=Top Left Y:
2159Caption3=Bottom Right X:
2160Caption4=Bottom Right Y:
2161Caption5=Result Variable:
2162Default5=nChecksum
2163Returns=5
2164
2165[GetTreeNode]
2166Description=Returns index of visible treeview node matching given text.
2167NumFields=8
2168Caption1=Window Title:
2169ButtonType1=2
2170Caption2=Class Name:
2171Caption3=Instance:
2172Caption4=Text:
2173Caption5=Case Sensitive [1/0]:
2174ButtonType5=5
2175Caption6=Partial Match [1/0]:
2176ButtonType6=5
2177Caption7=Result Variable:
2178Caption8=Handle:
2179Default7=nIndex
2180Returns=7
2181Options=3
2182Option1=WF_TYPE
2183Option2=WIN_USEHANDLE
2184Option3=WIN_REGEX
2185
2186[LibFree]
2187Description=Frees a library previously loaded with LibLoad.
2188NumFields=1
2189Caption1=Module Handle:
2190LITE=NO
2191GAME=NO
2192
2193[LibFunc]
2194Description=Calls a library function in a DLL.
2195NumFields=4
2196Caption1=Module Name/Handle:
2197Caption2=Function Name:
2198Caption3=Result Variable:
2199Caption4=Parm List:
2200Mandatory4=0
2201Default3=r
2202Returns=3
2203LITE=NO
2204GAME=NO
2205
2206[LibFuncW]
2207Description=Calls a library function in a DLL.
2208NumFields=4
2209Caption1=Module Name/Handle:
2210Caption2=Function Name:
2211Caption3=Result Variable:
2212Caption4=Parm List:
2213Mandatory4=0
2214Default3=r
2215Returns=3
2216LITE=NO
2217GAME=NO
2218
2219[LibLoad]
2220Description=Loads a DLL library and returns module handle.
2221NumFields=2
2222Caption1=Library Name:
2223Caption2=Result Variable:
2224Default2=hLib
2225Returns=2
2226LITE=NO
2227GAME=NO
2228
2229[PlayWav]
2230Description=Plays a .WAV sound file.
2231NumFields=1
2232Caption1=Wav File:
2233ButtonType1=1
2234
2235[PushButton]
2236Description=Attempts to 'click' specified button of specified window.
2237NumFields=2
2238Caption1=Window Title:
2239ButtonType1=2
2240Caption2=Button Caption:
2241Options=3
2242Option1=WF_TYPE
2243Option2=WIN_USEHANDLE
2244Option3=WIN_REGEX
2245
2246[Random]
2247Description=Returns a random number within specified range (0 <= Result < Range)
2248NumFields=2
2249Caption1=Range:
2250Caption2=Result Variable:
2251Default2=nValue
2252Returns=2
2253
2254[ScreenCapture]
2255Description=Captures a screen area to a .BMP or .JPG file and to the clipboard.
2256NumFields=5
2257Caption1=Top Left X:
2258Caption2=Top Left Y:
2259Caption3=Bottom Right X:
2260Caption4=Bottom Right Y:
2261Caption5=Filename:
2262
2263[SelectMenu]
2264Description=Selects the specified menu item
2265NumFields=3
2266Caption1=Window Title:
2267ButtonType1=2
2268Caption2=Menu Index:
2269Caption3=Submenu Index List:
2270Options=3
2271Option1=WF_TYPE
2272Option2=WIN_USEHANDLE
2273Option3=WIN_REGEX
2274
2275[SetCheckBox]
2276Description=Checks/Unchecks checkbox.
2277NumFields=3
2278Caption1=Window Title:
2279ButtonType1=2
2280Default1=
2281Mandatory1=1
2282ButtonType1=2
2283Caption2=Object Caption:
2284Default2=
2285Mandatory2=1
2286ButtonType2=0
2287Caption3=TRUE|FALSE:
2288Default3=TRUE
2289Mandatory3=1
2290ButtonType3=6
2291Options=3
2292Option1=WF_TYPE
2293Option2=WIN_USEHANDLE
2294Option3=WIN_REGEX
2295
2296[SetControlText]
2297Description=Sets text associated with specified control.
2298NumFields=4
2299Caption1=Window Title:
2300ButtonType1=2
2301Default1=
2302Mandatory1=1
2303ButtonType1=2
2304Caption2=Class Name:
2305Default2=
2306Mandatory2=1
2307ButtonType2=0
2308Caption3=Instance:
2309Default3=1
2310Mandatory3=1
2311ButtonType3=0
2312Caption4=New Text:
2313Default3=0
2314Mandatory3=1
2315ButtonType3=0
2316Options=3
2317Option1=WF_TYPE
2318Option2=WIN_USEHANDLE
2319Option3=WIN_REGEX
2320
2321[SetEnvVar]
2322Description=Set value of environment variable.
2323NumFields=2
2324Caption1=Environment Variable:
2325Default1=
2326Mandatory1=1
2327ButtonType1=0
2328Caption2=New Value:
2329Default2=
2330Mandatory2=1
2331ButtonType2=0
2332
2333[TimeStamp]
2334Description=Outputs time in milliseconds and comment to text file.
2335NumFields=2
2336Caption1=Filename:
2337Default1=
2338Mandatory1=1
2339ButtonType1=1
2340Caption2=Comment:
2341Default2=
2342Mandatory2=0
2343ButtonType2=0
2344
2345[WaitCursorChanged]
2346Description=Waits for cursor in foreground window to change
2347NumFields=1
2348Caption1=Timeout:
2349
2350[WaitPixelColor]
2351Description=Waits for specified color at specific screen coordinate
2352NumFields=4
2353Caption1=Color Code:
2354Caption2=X
2355Caption3=Y
2356Caption4=Timeout
2357
2358[WaitRectChanged]
2359Description=Waits for screen area to change
2360NumFields=5
2361Caption1=X1:
2362Caption2=Y1:
2363Caption3=X2:
2364Caption4=Y2:
2365Caption5=Timeout
2366
2367[GetCaretPos]
2368Description=Retrieves X,Y coordinates of text caret in foreground window
2369NumFields=3
2370Caption1=X Coord:
2371Default1=nXPos
2372Caption2=Y Coord:
2373Default2=nYPos
2374Caption3=Relative [1/0]:
2375ButtonType3=5
2376Default3=0
2377Returns=1;2
2378
2379[GetCursorPos]
2380Description=Returns X,Y coordinates of current mouse cursor position
2381NumFields=3
2382Caption1=X Variable:
2383Caption2=Y Variable:
2384Caption3=Cursor Type:
2385Default1=nXPos
2386Default2=nYPos
2387Default3=csType
2388Returns=1;2;3
2389
2390[LClick]
2391Description=Clicks left mouse button
2392NumFields=0
2393
2394[LDblClick]
2395Description=Double-clicks left mouse button
2396NumFields=0
2397
2398[LDown]
2399Description=Holds down left mouse button
2400NumFields=0
2401
2402[LUp]
2403Description=Releases left mouse button
2404NumFields=0
2405
2406[MClick]
2407Description=Clicks middle mouse button
2408NumFields=0
2409
2410[MDblClick]
2411Description=Double-clicks middle mouse button
2412NumFields=0
2413
2414[MDown]
2415Description=Holds down middle mouse button
2416NumFields=0
2417
2418[MUp]
2419Description=Releases middle mouse button
2420NumFields=0
2421
2422[RClick]
2423Description=Clicks right mouse button
2424NumFields=0
2425
2426[RDblClick]
2427Description=Double-clicks right mouse button
2428NumFields=0
2429
2430[RDown]
2431Description=Holds down right mouse button
2432NumFields=0
2433
2434[RUp]
2435Description=Releases right mouse button
2436NumFields=0
2437
2438[MouseMove]
2439Description=Moves mouse cursor to screen position X,Y
2440NumFields=2
2441Caption1=X Coord:
2442Caption2=Y Coord:
2443
2444[MouseMoveRel]
2445Description=Moves mouse cursor position X,Y relative to foreground window
2446NumFields=2
2447Caption1=X Coord:
2448Caption2=Y Coord:
2449
2450[MouseOver]
2451Description=Attempts to position mouse cursor over specified button (or object)
2452NumFields=2
2453Caption1=Window Title:
2454ButtonType1=2
2455Caption2=Button/Object Caption:
2456Options=3
2457Option1=WF_TYPE
2458Option2=WIN_USEHANDLE
2459Option3=WIN_REGEX
2460
2461[Toolbar]
2462Description=Positions the mouse cursor over the specified ToolbarWindow32 button of the specified window.
2463NumFields=3
2464Caption1=Window Title:
2465ButtonType1=2
2466Caption2=Toolbar Index:
2467Caption3=Button Index:
2468
2469[Add]
2470Description=Adds two numbers
2471NumFields=2
2472Caption1=Value 1:
2473Default1=
2474ButtonType1=0
2475Mandatory1=0
2476Caption2=Value 2:
2477Default2=
2478ButtonType2=0
2479Mandatory2=0
2480
2481[Let]
2482Description=Assigns a value to a variable
2483NumFields=2
2484Caption1=Variable:
2485Caption2=Value/Expression:
2486Returns=1
2487
2488[Trunc]
2489Description=Complex Expression function Trunc Truncates a floating point value to an integer.
2490NumFields=2
2491Caption1=Variable:
2492Caption2=Expression:
2493Default2={Trunc(%VAR%)}
2494Returns=1
2495IsLet=1
2496
2497[Round]
2498Description=Complex Expression function Round Rounds a floating point value to an integer
2499NumFields=2
2500Caption1=Variable:
2501Caption2=Expression:
2502Default2={Round(%VAR%)}
2503Returns=1
2504IsLet=1
2505
2506[Abs]
2507Description=Complex Expression function Abs Returns the absolute value of an argument
2508NumFields=2
2509Caption1=Variable:
2510Caption2=Expression:
2511Default2={Abs(%VAR%)}
2512Returns=1
2513IsLet=1
2514
2515[ArcTan]
2516Description=Complex Expression function ArcTan calculates the arctangent of the given number
2517NumFields=2
2518Caption1=Variable:
2519Caption2=Expression:
2520Default2={ArcTan(%VAR%)}
2521Returns=1
2522IsLet=1
2523
2524[Cos]
2525Description=Complex Expression function Cos returns the cosine of the angle VAR, in radians.
2526NumFields=2
2527Caption1=Variable:
2528Caption2=Expression:
2529Default2={Cos(%VAR%)}
2530Returns=1
2531IsLet=1
2532
2533[Exp]
2534Description=Complex Expression function Exp returns the value of e raised to the power of VAR, where e is the base of the natural logarithms
2535NumFields=2
2536Caption1=Variable:
2537Caption2=Expression:
2538Default2={Exp(%VAR%)}
2539Returns=1
2540IsLet=1
2541
2542[Frac]
2543Description=Complex Expression function Frac returns the fractional part of the argument VAR
2544NumFields=2
2545Caption1=Variable:
2546Caption2=Expression:
2547Default2={Frac(%VAR%)}
2548Returns=1
2549IsLet=1
2550
2551[Int]
2552Description=Complex Expression function Int returns the integer part of the argument VAR
2553NumFields=2
2554Caption1=Variable:
2555Caption2=Expression:
2556Default2={Int(%VAR%)}
2557Returns=1
2558IsLet=1
2559
2560[Ln]
2561Description=Complex Expression function Ln returns the natural logarithm (Ln(e) = 1) of the float-type expression VAR
2562NumFields=2
2563Caption1=Variable:
2564Caption2=Expression:
2565Default2={Ln(%VAR%)}
2566Returns=1
2567IsLet=1
2568
2569[Pi]
2570Description=Complex Expression function Pi returns the value of pi
2571NumFields=2
2572Caption1=Variable:
2573Caption2=Expression:
2574Default2={Pi}
2575Returns=1
2576IsLet=1
2577
2578[Sin]
2579Description=Complex Expression function Sin returns the sine of the angle VAR, in radians.
2580NumFields=2
2581Caption1=Variable:
2582Caption2=Expression:
2583Default2={Sin(%VAR%)}
2584Returns=1
2585IsLet=1
2586
2587[Sqr]
2588Description=Complex Expression function Sqr returns the square of the argument.
2589NumFields=2
2590Caption1=Variable:
2591Caption2=Expression:
2592Default2={Sqr(%VAR%)}
2593Returns=1
2594IsLet=1
2595
2596[Sqrt]
2597Description=Complex Expression function Sqrt returns the square root of the argument.
2598NumFields=2
2599Caption1=Variable:
2600Caption2=Expression:
2601Default2={Sqrt(%VAR%)}
2602Returns=1
2603IsLet=1
2604
2605[Power]
2606Description=Complex Expression function Power raises VAR by given exponent to return power.
2607NumFields=2
2608Caption1=Variable:
2609Caption2=Expression:
2610Default2={Power(%VAR%,Exponent)}
2611Returns=1
2612IsLet=1
2613
2614[Sub]
2615Description=Subtracts two numbers
2616NumFields=2
2617Caption1=Value 1:
2618Default1=
2619ButtonType1=0
2620Mandatory1=0
2621Caption2=Value 2:
2622Default2=
2623ButtonType2=0
2624Mandatory2=0
2625
2626[RegistryDelKey]
2627Description=Removes a key from the registry
2628NumFields=2
2629Caption1=Root Key:
2630Caption2=Key:
2631LITE=NO
2632GAME=NO
2633Options=1
2634Option1=REG_64
2635
2636[RegistryDelVal]
2637Description=Removes a value from the registry
2638NumFields=3
2639Caption1=Root Key:
2640Caption2=Key:
2641Caption3=Value:
2642LITE=NO
2643GAME=NO
2644Options=1
2645Option1=REG_64
2646
2647[RegistryReadKey]
2648Description=Reads the value of an entry from the registry
2649NumFields=4
2650Caption1=Root Key:
2651Caption2=Key:
2652Caption3=Entry:
2653Caption4=Result Variable:
2654Default4=strValue
2655Returns=4
2656LITE=NO
2657GAME=NO
2658Options=1
2659Option1=REG_64
2660
2661[RegistryWriteKey]
2662Description=Creates or modified a registry entry
2663NumFields=4
2664Caption1=Root Key:
2665Caption2=Key:
2666Caption3=Entry:
2667Caption4=Value:
2668Options=2
2669Option1=REG_INTASSTR
2670Option2=REG_64
2671LITE=NO
2672GAME=NO
2673
2674[ExecuteFile]
2675Description=Executes a file using the application associated with the file's filetype
2676NumFields=2
2677Caption1=File Path:
2678ButtonType1=1
2679Caption2=Parameters (Optional):
2680
2681[RunProgram]
2682Description=Runs a program or command file
2683NumFields=1
2684Caption1=Command Line:
2685Default1=
2686ButtonType1=1
2687Mandatory1=1
2688Options=4
2689Option1=RP_WAIT
2690Option2=RP_WINDOWMODE
2691Option3=RP_DISPLAYERROR
2692Option4=RP_WIN64PROCESS
2693
2694[Run]
2695Description=Runs a program or command file
2696NumFields=1
2697Caption1=Command Line:
2698Default1=
2699ButtonType1=1
2700Mandatory1=1
2701Options=3
2702Option1=RP_WAIT
2703Option2=RP_WINDOWMODE
2704Option3=RP_DISPLAYERROR
2705
2706[GoSub]
2707Description=Branches to specified Subroutine
2708NumFields=1
2709Caption1=Subroutine:
2710
2711[SRT]
2712Description=Identifies start of Subroutine block
2713NumFields=1
2714Caption1=Subroutine Name:
2715
2716[END]
2717Description=Identifies end of Subroutine block
2718NumFields=1
2719Caption1=Subroutine Name:
2720
2721[Goto]
2722Description=Branches to label
2723NumFields=1
2724Caption1=Label Name:
2725
2726[Label]
2727Description=Marks a label that execution can jump to
2728NumFields=1
2729Caption1=Label Name:
2730
2731[Macro]
2732Description=Executes another Macro Scheduler script file
2733NumFields=1
2734Caption1=File Name:
2735ButtonType1=1
2736
2737[OnEvent]
2738Description=Establishes an event handler (see help)
2739NumFields=4
2740Caption1=Event Type:
2741Caption2=Event Parm:
2742Caption3=Extra Parm:
2743Caption4=Subroutine:
2744LITE=NO
2745GAME=NO
2746
2747[Remark]
2748Description=Used to place a comment in the code (not executed)
2749NumFields=1
2750Caption1=Comment:
2751
2752[Repeat]
2753Description=Use in conjunction with Until to create a loop
2754NumFields=1
2755Caption1=Loop Variable:
2756
2757[Until]
2758Description=Use in conjunction with Repeat to create a loop
2759NumFields=1
2760Caption1=Condition:
2761
2762[Wait]
2763Description=Pauses execution for specified number of seconds
2764NumFields=1
2765Caption1=Seconds to Wait:
2766
2767[WaitReady]
2768Description=Attempts to suspend execution until foreground window is ready for input
2769NumFields=1
2770Caption1=Paint Events [1/0]:
2771ButtonType1=5
2772Default1=0
2773
2774[ConCat]
2775Description=Concatenates two strings
2776NumFields=2
2777Caption1=String1:
2778Caption2=String2:
2779
2780[Crypt]
2781Description=Encrypts or decrypts source to target
2782NumFields=3
2783Caption1=Key:
2784Caption2=Source:
2785Caption3=Target:
2786Options=1
2787Option1=CRYPT_LEVEL
2788Returns=3
2789
2790[UpperCase]
2791Description=Returns upper case version of string
2792NumFields=2
2793Caption1=String:
2794Caption2=Result Variable:
2795Default2=strRes
2796Returns=2
2797
2798[LowerCase]
2799Description=Returns lower case version of string
2800NumFields=2
2801Caption1=String:
2802Caption2=Result Variable:
2803Default2=strRes
2804Returns=2
2805
2806[Trim]
2807Description=Returns string with trailing and leading spaces and control chars removed
2808NumFields=2
2809Caption1=String:
2810Caption2=Result Variable:
2811Default2=strRes
2812Returns=2
2813
2814[LTrim]
2815Description=Returns string with leading spaces and control chars removed
2816NumFields=2
2817Caption1=String:
2818Caption2=Result Variable:
2819Default2=strRes
2820Returns=2
2821
2822[RTrim]
2823Description=Returns string with trailing spaces and control chars removed
2824NumFields=2
2825Caption1=String:
2826Caption2=Result Variable:
2827Default2=strRes
2828Returns=2
2829
2830[Length]
2831Description=Returns length of string
2832NumFields=2
2833Caption1=String:
2834Caption2=Result Variable:
2835Default2=nLength
2836Returns=2
2837
2838[MidStr]
2839Description=Returns a substring of a string
2840NumFields=4
2841Caption1=String:
2842Caption2=Start Position:
2843Caption3=Length:
2844Caption4=Result Variable:
2845Default4=strSub
2846Returns=4
2847
2848[Position]
2849Description=Returns starting position of substring in a string
2850NumFields=5
2851Caption1=Substring:
2852Caption2=String:
2853Caption3=Start:
2854Caption4=Result Variable:
2855Caption5=Relative:
2856ButtonType5=6
2857Default5=TRUE
2858Default4=nPos
2859Returns=4
2860
2861[Separate]
2862Description=Separates a list into variable array
2863NumFields=3
2864Caption1=List:
2865Caption2=Delimiter:
2866Caption3=Array Name:
2867Default2=;
2868Default3=arrItems
2869Returns=3
2870
2871[StringReplace]
2872Description=Replaces occurences of a substring in a string
2873NumFields=4
2874Caption1=Source String:
2875Caption2=Find String:
2876Caption3=Replace With:
2877Caption4=Result Variable:
2878Default4=strNewString
2879Returns=4
2880
2881[VBEND]
2882Description=Marks end of VBScript block
2883NumFields=0
2884LITE=NO
2885GAME=NO
2886
2887[VBSTART]
2888Description=Marks start of VBScript block
2889NumFields=0
2890LITE=NO
2891GAME=NO
2892
2893[VBEval]
2894Description=Evaluates a VBScript Expression
2895NumFields=2
2896Caption1=VBScript Expression:
2897Caption2=Result Variable:
2898Default2=MyVar
2899Options=1
2900Option1=VBS_TIMEOUT
2901Returns=2
2902LITE=NO
2903GAME=NO
2904
2905[VBRun]
2906Description=Runs a VBScript Subroutine created in a preceeding VBSTART/VBEND block
2907NumFields=2
2908Caption1=Subroutine Name:
2909Caption2=Parameter List:
2910Options=1
2911Option1=VBS_TIMEOUT
2912LITE=NO
2913GAME=NO
2914
2915[CloseWindow]
2916Description=Attempts to close the specified window
2917NumFields=1
2918Caption1=Window Title:
2919ButtonType1=2
2920Options=3
2921Option1=WIN_USEHANDLE
2922Option2=WF_TYPE
2923Option3=WIN_REGEX
2924
2925[FindWindowWithText]
2926Description=Attempts to locate a window containing specified text within it
2927NumFields=3
2928Caption1=Text To Find:
2929Caption2=SetFocus:
2930ButtonType2=5
2931Default2=0
2932Caption3=Result Var (Window Title):
2933Options=1
2934Option1=WIN_USEHANDLE
2935Default3=strTitle
2936Returns=3
2937
2938[GetActiveWindow]
2939Description=Retrieves information about the active window
2940NumFields=5
2941Caption1=Window Title:
2942Default1=strTitle
2943Caption2=X var:
2944Default2=nXPos
2945Caption3=Y var:
2946Default3=nYPos
2947Caption4=Width var:
2948Caption5=Height var:
2949Options=2
2950Option1=WIN_USEHANDLE
2951Option2=GAW_TYPE
2952Returns=1;2;3;4;5
2953
2954[GetWindowHandle]
2955Description=Retrieves handle of specified window
2956NumFields=2
2957Caption1=Window Title:
2958ButtonType1=2
2959Caption2=Result Variable:
2960Default2=nHandle
2961Returns=2
2962Options=1
2963Option1=WIN_REGEX
2964
2965[GetWindowNames]
2966Description=Retrieves the title and class name of a window given its handle
2967NumFields=3
2968Caption1=Window Handle:
2969Caption2=Title:
2970Default2=sTitle
2971Caption3=Class:
2972Default3=sClass
2973Returns=2;3
2974
2975[GetWindowPos]
2976Description=Retrieves position of specified window
2977NumFields=3
2978Caption1=Window Title:
2979ButtonType1=2
2980Caption2=X var:
2981Default2=nXPos
2982Caption3=Y var:
2983Default3=nYPos
2984Options=2
2985Option1=WIN_USEHANDLE
2986Option2=WIN_REGEX
2987Returns=2;3
2988
2989[GetWindowSize]
2990Description=Retrieves size of specified window
2991NumFields=3
2992Caption1=Window Title:
2993ButtonType1=2
2994Caption2=Width var:
2995Default2=nWidth
2996Caption3=Height var:
2997Default3=nHeight
2998Options=1
2999Option1=WIN_USEHANDLE
3000Returns=2;3
3001Option2=WIN_REGEX
3002
3003[GetWindowProcess]
3004Description=Retrives process ID and process name of window
3005NumFields=3
3006Caption1=Window Title:
3007ButtonType1=2
3008Caption2=Process ID Var:
3009Default2=nProcID
3010Caption3=Process Name Var:
3011Default3=strProcName
3012Options=2
3013Option1=WIN_USEHANDLE
3014Option2=WIN_REGEX
3015Returns=2;3
3016
3017[GetWindowText]
3018Description=Retrieves detectable text in window
3019NumFields=2
3020Caption1=Window Title:
3021ButtonType1=2
3022Caption2=Result Variable:
3023Options=2
3024Option1=WIN_USEHANDLE
3025Option2=WIN_REGEX
3026Default2=strText
3027Returns=2
3028
3029[MoveWindow]
3030Description=Moves specified window to new position
3031NumFields=3
3032Caption1=Window Title:
3033ButtonType1=2
3034Caption2=New X Pos:
3035Caption3=New Y Pos:
3036Options=3
3037Option1=WIN_USEHANDLE
3038Option2=WF_TYPE
3039Option3=WIN_REGEX
3040
3041[ResizeWindow]
3042Description=Resizes specified window
3043NumFields=3
3044Caption1=Window Title:
3045ButtonType1=2
3046Caption2=New Width:
3047Caption3=New Height:
3048Options=3
3049Option1=WIN_USEHANDLE
3050Option2=WF_TYPE
3051Option3=WIN_REGEX
3052
3053[SetFocus]
3054Description=Sets focus to (activates) specified window
3055NumFields=1
3056Caption1=Window Title:
3057ButtonType1=2
3058Options=3
3059Option1=WIN_USEHANDLE
3060Option2=WF_TYPE
3061Option3=WIN_REGEX
3062
3063[ShutDownWindows]
3064Description=Shutdown or reboot Windows
3065NumFields=1
3066Caption1=Shutdown Type:
3067
3068[WaitWindowChanged]
3069Description=Pauses script until there is a change of foreground window
3070NumFields=1
3071Caption1=Timeout:
3072
3073[WaitWindowClosed]
3074Description=Pauses script until specified window no longer exists
3075NumFields=1
3076Caption1=Window Title:
3077ButtonType1=2
3078Options=4
3079Option1=WIN_USEHANDLE
3080option2=WW_TIMEOUT
3081Option3=WF_TYPE
3082Option4=WIN_REGEX
3083
3084[WaitWindowOpen]
3085Description=Waits for window to be open and active
3086NumFields=1
3087Caption1=Window Title:
3088ButtonType1=2
3089Default1=
3090Mandatory1=1
3091Options=4
3092Option1=WIN_USEHANDLE
3093option2=WW_TIMEOUT
3094Option3=WF_TYPE
3095Option3=WIN_REGEX
3096
3097[WaitWindowFocused]
3098Description=Waits for window to be open and focused
3099NumFields=1
3100Caption1=Window Title:
3101ButtonType1=2
3102Default1=
3103Mandatory1=1
3104Options=4
3105Option1=WIN_USEHANDLE
3106option2=WW_TIMEOUT
3107Option3=WF_TYPE
3108Option3=WIN_REGEX
3109
3110[WindowAction]
3111Description=Restore, minimize, maximize or close a window
3112NumFields=2
3113Caption1=Action Type:
3114Caption2=Window Title:
3115ButtonType2=2
3116Options=2
3117Option1=WIN_USEHANDLE
3118Option2=WIN_REGEX
3119
3120[GetScreenRes]
3121Description=Returns width and height of screen
3122NumFields=2
3123Caption1=Width (X):
3124Caption2=Height (Y):
3125Default1=nWidth
3126Default2=nHeight
3127Returns=1;2
3128
3129[FindImagePos]
3130Description=Finds position of bitmap in another
3131NumFields=8
3132Caption1=Needle Image File:
3133Caption2=Haystack Image File:
3134Caption3=Tolerance:
3135Caption4=Return Offset:
3136Default4=1
3137Default3=0
3138Caption5=X Array Name:
3139Default5=XArr
3140Caption6=Y Array Name:
3141Default6=YArr
3142Caption7=Num Found Var:
3143Default7=NumFound
3144Caption8=Algorithm:
3145Default8=CCOEFF
3146ButtonType1=1
3147ButtonType2=1
3148ButtonType4=8
3149CaptureTool=1
3150Default2=SCREEN
3151Returns=5;6;7
3152LITE=NO
3153Options=1
3154Option1=FIP_SCANPIXELS
3155
3156
3157[CompareBitmaps]
3158Description=Compares two bitmaps
3159NumFields=3
3160Caption1=Bitmap File 1:
3161Caption2=Bitmap File 2:
3162Caption3=Result Variable:
3163ButtonType1=1
3164ButtonType2=1
3165CaptureTool=1
3166Default3=nPercent
3167Returns=3
3168LITE=NO
3169
3170[WaitScreenImage]
3171Description=Waits until given image is found on screen
3172NumFields=3
3173Caption1=Bitmap File:
3174Caption2=Tolerance:
3175Caption3=Algorithm:
3176Default3=CCOEFF
3177Default2=0
3178ButtonType1=1
3179CaptureTool=1
3180Options=1
3181Option1=WSI_TIMEOUT
3182LITE=NO
3183Options=1
3184Option1=WFP_TIMEOUT
3185
3186[TelnetConnect]
3187Description=Connects to a Telnet server
3188NumFields=3
3189Caption1=Host:
3190Caption2=Port:
3191Default2=23
3192Caption3=Session Variable:
3193Default3=hTN
3194Returns=3
3195LITE=NO
3196GAME=NO
3197
3198[TelnetClose]
3199Description=Terminates a Telnet session
3200NumFields=1
3201Caption1=Session Variable:
3202Default1=hTN
3203LITE=NO
3204GAME=NO
3205
3206[TelnetClearLog]
3207Description=Clears TELNET_SESSIONLOG
3208NumFields=1
3209Caption1=Session Variable:
3210Default1=hTN
3211LITE=NO
3212GAME=NO
3213
3214[TelnetSend]
3215Description=Sends text to a Telnet session
3216NumFields=2
3217Caption1=Session Variable:
3218Default1=hTN
3219Caption2=Text:
3220LITE=NO
3221GAME=NO
3222
3223[TelnetWaitFor]
3224Description=Waits for text in Telnet session
3225NumFields=4
3226Caption1=Session Variable:
3227Default1=hTN
3228Caption2=Text:
3229Caption3=Timeout:
3230Default3=5
3231Caption4=Response:
3232Returns=4
3233LITE=NO
3234GAME=NO
3235
3236[Include]
3237Description=Includes another script file
3238NumFields=1
3239Caption1=Script File:
3240ButtonType1=1
3241
3242[Exit]
3243Description=Terminates script immediately
3244NumFields=1
3245Caption1=Exit Code:
3246Default1=0
3247
3248[Base64]
3249Description=Encodes/Decodes data to/from Base64
3250NumFields=3
3251Caption1=Data:
3252Caption2=ENCODE/DECODE:
3253Caption3=Result Variable:
3254ButtonType2=7
3255Default2=ENCODE
3256Default3=strData
3257Returns=3
3258
3259[RGB]
3260Description=Creates color code based on red,green,blue values
3261NumFields=4
3262Caption1=Red:
3263Caption2=Green:
3264Caption3=Blue:
3265Caption4=Result Variable:
3266Default4=nColor
3267Returns=4
3268
3269[SetDialogObjectFocus]
3270Description=Sets focus to given dialog object
3271NumFields=2
3272Caption1=Dialog Name:
3273Caption2=Object Name:
3274LITE=NO
3275GAME=NO
3276
3277[SetDialogObjectVisible]
3278Description=Shows or Hides a dialog object
3279NumFields=3
3280Caption1=Dialog Name:
3281Caption2=Object Name:
3282Caption3=Show/Hide [1/0]:
3283ButtonType3=5
3284Default3=0
3285LITE=NO
3286GAME=NO
3287
3288[SetDialogObjectFont]
3289Description=Sets font attributes of specified dialog object
3290NumFields=6
3291Caption1=Dialog Name:
3292Caption2=Object Name:
3293Caption3=Font Name:
3294Caption4=Font Size:
3295Caption5=Font Style:
3296Caption6=Font Color Code:
3297LITE=NO
3298GAME=NO
3299
3300[SetDialogObjectColor]
3301Description=Sets color of specified dialog object
3302NumFields=3
3303Caption1=Dialog Name:
3304Caption2=Object Name:
3305Caption3=Color Code:
3306LITE=NO
3307GAME=NO
3308
3309[GetTextReset]
3310Description=Resets/Initialises the Text Capture Functions
3311NumFields=0
3312LITE=NO
3313GAME=NO
3314
3315[GetTextAtPoint]
3316Description=Gets text at specified screen position
3317NumFields=4
3318Caption1=X Pos:
3319Caption2=Y Pos:
3320Caption3=Result Variable:
3321Caption4=Char Pos Var:
3322Default3=strText
3323Default4=nCharPos
3324Returns=3;4
3325LITE=NO
3326GAME=NO
3327
3328[GetTextInRect]
3329Description=Gets text in specified screen rectangle
3330NumFields=5
3331Caption1=Left:
3332Caption2=Top:
3333Caption3=Right:
3334Caption4=Bottom:
3335Caption5=Result Variable:
3336Default5=strText
3337Returns=5
3338LITE=NO
3339GAME=NO
3340
3341[GetWindowTextEx]
3342Description=Gets visible text in specified window
3343NumFields=2
3344Caption1=Window Title:
3345ButtonType1=2
3346Caption2=Result Variable:
3347Default2=strText
3348Returns=2
3349LITE=NO
3350GAME=NO
3351
3352[WaitScreenText]
3353Description=Waits for text to appear on screen
3354NumFields=1
3355Caption1=Text to find:
3356Options=1
3357Option1=WST_TIMEOUT
3358LITE=NO
3359GAME=NO
3360
3361[GetWindowList]
3362Description=Returns CRLF delimited list of open windows
3363NumFields=1
3364Caption1=Result Variable:
3365Default1=strWindowList
3366Returns=1
3367
3368[DBClose]
3369Description=Closes connection to database
3370NumFields=1
3371Caption1=Connection ID:
3372Default1=dbH
3373LITE=NO
3374GAME=NO
3375
3376[DBConnect]
3377Description=Connects to a database
3378NumFields=2
3379Caption1=Connection String:
3380ButtonType1=9
3381Caption2=Connection ID:
3382Default2=dbH
3383LITE=NO
3384GAME=NO
3385
3386[DBExec]
3387Description=Executes a SQL Statement
3388NumFields=3
3389Caption1=Connection ID:
3390Default1=dbH
3391Caption2=SQL Statement:
3392Caption3=Result Variable:
3393Default3=rowsAffected
3394LITE=NO
3395GAME=NO
3396Returns=3
3397
3398[DBQuery]
3399Description=Executes SQL Statement and retrieves resultant recordset to an array
3400NumFields=6
3401Caption1=Connection ID:
3402Default1=dbH
3403Caption2=SQL Statement:
3404Caption3=Array Variable:
3405Default3=rset
3406Caption4=Num Records:
3407Default4=NumRecs
3408Caption5=Num Fields:
3409Default5=NumFields
3410Caption6=Fieldnames (0/1):
3411ButtonType6=5
3412Default6=0
3413LITE=NO
3414GAME=NO
3415Returns=3;4;5
3416
3417[RegEx]
3418Description=Performs a Regular Expression or EasyPatterns search/replace on a string
3419NumFields=8
3420Caption1=Pattern:
3421Caption2=Text:
3422Caption3=EasyPattern (0/1):
3423ButtonType3=5
3424Caption4=Match Array:
3425Default4=Matches
3426Caption5=Num Matches:
3427Default5=NumMatches
3428Caption6=Replace Flag (0/1):
3429ButtonType6=5
3430Caption7=Replace String:
3431Caption8=Replace Result:
3432Returns=4;5;8
3433
3434[SOWrite]
3435Description=Writes to STDOUT (Console Apps only)
3436NumFields=1
3437Caption1=Text:
3438
3439[SOWriteLn]
3440Description=Write Line to STDOUT (Console Apps only)
3441NumFields=1
3442Caption1=Text:
3443
3444[ExportData]
3445Description=Exports binary data from script ( Browse and add \Filename )
3446NumFields=2
3447Caption1=Label:
3448Caption2=Filename:
3449ButtonType2=10
3450
3451[IEWait]
3452Description=Waits until the specified IE browser window reports not busy
3453NumFields=1
3454Caption1=URL:
3455
3456[IEGetTags]
3457Description=Returns an array of tag values of specified type from given IE window
3458NumFields=4
3459Caption1=URL:
3460Caption2=Tagname:
3461Caption3=Return [H|T|O]:
3462Caption4=ArrayVar:
3463Default3=H
3464Default4=arrTag
3465
3466[IEGetTagsByAttrib]
3467Description=Returns an array of tag values of specified type with given attribute value from given IE window
3468NumFields=5
3469Caption1=URL:
3470Caption2=Tagname:
3471Caption3=Attrib=Value:
3472Caption4=Return [H|T|O]:
3473Caption5=ArrayVar:
3474Default4=H
3475Default5=arrTag
3476
3477[IETagEvent]
3478Description=For a given tag, clicks, focuses or modifies its value
3479NumFields=5
3480Caption1=URL:
3481Caption2=Tagname:
3482Caption3=Index:
3483Caption4=Event:
3484Caption5=Value:
3485
3486[IETagEventByAttrib]
3487Description=For a given tag with specified attrib=value pair, clicks, focuses or modifies its value
3488NumFields=5
3489Caption1=URL:
3490Caption2=Tagname:
3491Caption3=Attrib=Value:
3492Caption4=Event:
3493Caption5=Value:
3494
3495[IEClickTag]
3496Description=Clicks an HTML Element
3497NumFields=7
3498Caption1=IE_Reference:
3499Caption2=Frame:
3500Caption3=Form:
3501Caption4=Tagname:
3502Caption5=Attribute:
3503Caption6=Value:
3504Caption7=Result
3505Returns=7
3506
3507[IEContainsText]
3508Description=Determines whether or not text is contained in the page
3509NumFields=4
3510Caption1=IE_Reference:
3511Caption2=Frame:
3512Caption3=Text:
3513Caption4=Result:
3514Returns=4
3515
3516[IECreate]
3517Description=Creates a new IE WebBrowser Instance
3518NumFields=1
3519Caption1=IE Reference Var:
3520Returns=1
3521
3522[IEQuit]
3523Description=Closes an IE instance created with IECreate or obtained with IEGetFromURL
3524NumFields=2
3525Caption1=IE Reference:
3526Caption2=Result:
3527
3528[IEExtractTable]
3529Description=Extracts an HTML Table to CSV
3530NumFields=6
3531Caption1=IE_Reference:
3532Caption2=Frame:
3533Caption3=Index:
3534Caption4=Filename:
3535Caption5=RemoveCRLFs:
3536Caption6=Result:
3537Returns=6
3538
3539[IEExtractTableByName]
3540Description=Extracts an HTML Table to CSV
3541NumFields=6
3542Caption1=IE_Reference:
3543Caption2=Frame:
3544Caption3=Name or ID:
3545Caption4=Filename:
3546Caption5=RemoveCRLFs:
3547Options5=0,1
3548Caption6=Result:
3549Returns=6
3550
3551[IEExtractTag]
3552Description=Extracts data from HTML Element
3553NuMFields=6
3554Caption1=IE_Reference:
3555Caption2=Frame:
3556Caption3=Tagname:
3557Caption4=Index:
3558Caption5=All:
3559Options5=0,1
3560Caption6=Result:
3561Returns=6
3562
3563[IEExtractTagByName]
3564Description=Extracts data from HTML Element
3565NuMFields=6
3566Caption1=IE_Reference:
3567Caption2=Frame:
3568Caption3=Tagname:
3569Caption4=Name/ID:
3570Caption5=All:
3571Options5=0,1
3572Caption6=Result:
3573
3574[IEExtractTagByAttrib]
3575Description=Extracts data from HTML Element
3576NuMFields=7
3577Caption1=IE_Reference:
3578Caption2=Frame:
3579Caption3=Tagname:
3580Caption4=Attrib:
3581Caption5=Value:
3582Caption6=All:
3583Options6=0,1
3584Caption7=Result:
3585Returns=7
3586
3587[IEFormFill]
3588Description=Fills a web form field
3589NumFields=7
3590Caption1=IE_Reference:
3591Caption2=Frame:
3592Caption3=Form:
3593Caption4=Fieldname:
3594Caption5=Value:
3595Caption6=Event:
3596Caption7=Result:
3597Returns=7
3598
3599[IEFormSubmit]
3600Description=Submits a web form
3601NumFields=4
3602Caption1=IE_Reference:
3603Caption2=Frame:
3604Caption3=Form:
3605Caption4=Result:
3606Returns=4
3607
3608[IEGetHWND]
3609Description=Returns the window handle of an IE Instance
3610NumFields=2
3611Caption1=IE_Reference:
3612Caption2=Result:
3613Returns=2
3614
3615[IEGetURL]
3616Description=Returns the URL of an IE Instance
3617NumFields=2
3618Caption1=IE_Reference:
3619Caption2=Result:
3620Returns=2
3621
3622[IEGetTagPos]
3623Description=Returns the X,Y position of an element
3624NumFields=7
3625Caption1=IE_Reference:
3626Caption2=Frame:
3627Caption3=Tagname:
3628Caption4=Attrib:
3629Caption5=Value:
3630Caption6=XPos:
3631Caption7=YPos:
3632Returns=6,7
3633
3634[IEGoBack]
3635Description=Hits the browers back button
3636NumFields=2
3637Caption1=IE_Reference:
3638Caption2=Result:
3639Returns=2
3640
3641[IEGoForward]
3642Description=Hits the browers forward button
3643NumFields=2
3644Caption1=IE_Reference:
3645Caption2=Result:
3646Returns=2
3647
3648[IENavigate]
3649Description=Navigates the webbrowser to a given URL
3650NumFields=3
3651Caption1=IE_Reference:
3652Caption2=URL:
3653Caption3=Result:
3654Returns=3
3655
3656[IEDoDownload]
3657Description=Performs a file download in IE (Clicks the Save button)
3658NumFields=1
3659Caption1=URL:
3660
3661[IEOnDownload]
3662Description=Enables or disables the download manager
3663NumFields=3
3664Caption1=Enabled/Disabled:
3665Options1=0,1
3666Caption2=Path:
3667Caption3=Result:
3668Returns=3
3669
3670[IERefresh]
3671Description=Refreshes the page
3672NumFields=2
3673Caption1=IE_Reference:
3674Caption2=Result:
3675Returns=2
3676
3677[IESetTimeout]
3678Description=Sets the timeout for WebRecorder functions
3679NuMFields=2
3680Caption1=Timeout:
3681Caption2=Result:
3682Returns=2
3683
3684[IESHowIE]
3685Description=Shows or hides given IE instance
3686NumFields=2
3687Caption1=IE_Reference:
3688Caption2=Show/Hide:
3689Options2=0,1
3690
3691[IEWaitDocumentComplete]
3692Description=Waits for the web document to complete loading
3693NumFields=2
3694Caption1=IE_Reference:
3695Caption2=Result:
3696Returns=2
3697
3698[IEWaitFileDownload]
3699Description=Waits for the given file to finish downloading
3700NumFelds=2
3701Caption1=Filename:
3702Caption2=Result:
3703Returns=2
3704
3705[IEWaitForText]
3706Description=Waits until the given text is on the page
3707NumFields=6
3708Caption1=IE_Reference:
3709Caption2=Frame:
3710Caption3=Text
3711Caption4=All:
3712Options4=0,1
3713Caption5=Timeout
3714Caption6=Result
3715Returns=6
3716
3717[IEWaitTimeout]
3718Description=Waits for IE to cease being busy or timeout
3719NumFields=4
3720Caption1=IE_Reference:
3721Caption2=Timeout_Seconds:
3722Caption3=Post_Seconds:
3723Caption4=Result:
3724Returns=4
3725
3726[IEWaitNew]
3727DEscription=Waits for a new IE window and returns a reference to it
3728NumFields=1
3729Caption1=IE_Reference Var:
3730Returns=1
3731
3732[IEGetFromURL]
3733Description=Attaches to an existing IE instance with matching URL
3734NumFields=2
3735Caption1=URL:
3736Caption2=IE_Reference Var:
3737Returns=2
3738
3739[IEGetAllText]
3740Description=Gets all the text in the specified IE browser window
3741NumFields=3
3742Caption1=IE_Reference:
3743Caption2=Text/Html:
3744Caption3=Result:
3745Options2=1,2
3746Default3=strText
3747Returns=3
3748
3749[UIAccessibleList]
3750Description=Returns a tree list of accessible elements belonging to the specified window
3751NumFields=2
3752Caption1=Window Title:
3753ButtonType1=2
3754Caption2=Result List:
3755Default2=resList
3756Returns=2
3757
3758[UIClick]
3759Description=Attempts to issue the default action for the specified UI element
3760NumFields=2
3761Caption1=Window Title:
3762ButtonType1=2
3763Caption2=Element Name:
3764
3765[UIFocus]
3766Description=Attempts to set keyboard focus to the specified UI element
3767NumFields=2
3768Caption1=Window Title:
3769ButtonType1=2
3770Caption2=Element Name:
3771
3772[UIGetValue]
3773Description=Returns the value(s) (if any) of the specified UI element
3774NumFields=4
3775Caption1=Window Title:
3776ButtonType1=2
3777Caption2=Element Name:
3778Caption3=Values:
3779Default3=resValues
3780Caption4=Positions:
3781Default3=resPositions
3782Returns=3;4
3783
3784[UIPos]
3785Description=Returns position(s) and dimention(s) of matching UI element(s)
3786NumFields=3
3787Caption1=Window Title:
3788ButtonType1=2
3789Caption2=Element Name:
3790Caption3=Positions:
3791Default3=resPositions
3792Returns=3
3793
3794[UISelect]
3795Description=Attempts to select the specified UI element
3796NumFields=2
3797Caption1=Window Title:
3798ButtonType1=2
3799Caption2=Element Name:
3800
3801[UISetValue]
3802Description=If possible sets the value of the specified UI element
3803NumFields=3
3804Caption1=Window Title:
3805ButtonType1=2
3806Caption2=Element Name:
3807Caption3=New Value:
3808
3809[RP_WAIT]
3810Caption=Wait:
3811NumOpts=3
3812OptVal1=0
3813OptVal2=1
3814OptVal3=2
3815OptDesc1=None
3816OptDesc2=Wait for completion
3817OptDesc3=Wait for ready
3818Default=0
3819
3820[RP_WINDOWMODE]
3821Caption=Window Mode:
3822NumOpts=4
3823OptVal1=0
3824OptVal2=1
3825OptVal3=2
3826OptVal4=3
3827OptDesc1=Hidden
3828OptDesc2=Normal
3829OptDesc3=Minimized
3830OptDesc4=Maximized
3831Default=1
3832
3833[RP_DISPLAYERROR]
3834Caption=Errors:
3835NumOpts=2
3836OptVal1=0
3837OptVal2=1
3838OptDesc1=Suppress errors
3839OptDesc2=Show errors
3840Default=1
3841
3842[RP_WIN64PROCESS]
3843Caption=x64 Process:
3844NumOpts=2
3845OptVal1=0
3846OptVal2=1
3847OptDesc1=Run 32 Bit Process
3848OptDesc2=Run 64 Bit Process
3849Default=0
3850
3851[WIN_USEHANDLE]
3852Caption=Use Handle:
3853NumOpts=2
3854OptVal1=0
3855OptVal2=1
3856OptDesc1=Use Window Titles
3857OptDesc2=Use Window Handles
3858Default=0
3859
3860[WIN_REGEX]
3861Caption=Use regex matching:
3862NumOpts=2
3863OptVal1=0
3864OptVal2=1
3865OptDesc1=Use Text
3866OptDesc2=Use Regex
3867Default=0
3868
3869
3870[WF_TYPE]
3871Caption=Window Type:
3872NumOpts=4
3873OptVal1=0
3874OptVal2=1
3875OptVal3=2
3876OptVal4=3
3877OptDesc1=No Child Windows
3878OptDesc2=All Windows (Default)
3879OptDesc3=Visible Windows Only
3880OptDesc4=Child Windows Only
3881Default=1
3882
3883[WW_TIMEOUT]
3884Caption=Timeout (Secs):
3885NumOpts=26
3886OptVal1=5
3887OptVal2=10
3888OptVal3=15
3889OptVal4=20
3890OptVal5=25
3891OptVal6=30
3892OptVal7=35
3893OptVal8=40
3894OptVal9=45
3895OptVal10=50
3896OptVal11=55
3897OptVal12=60
3898OptVal13=65
3899OptVal14=70
3900OptVal15=75
3901OptVal16=80
3902OptVal17=85
3903OptVal18=90
3904OptVal19=95
3905OptVal20=100
3906OptVal21=105
3907OptVal22=110
3908OptVal23=115
3909OptVal24=120
3910OptVal25=Other
3911OptDesc1=5
3912OptDesc2=10
3913OptDesc3=15
3914OptDesc4=20
3915OptDesc5=25
3916OptDesc6=30
3917OptDesc7=35
3918OptDesc8=40
3919OptDesc9=45
3920OptDesc10=50
3921OptDesc11=55
3922OptDesc12=60
3923OptDesc13=65
3924OptDesc14=70
3925OptDesc15=75
3926OptDesc16=80
3927OptDesc17=85
3928OptDesc18=90
3929OptDesc19=95
3930OptDesc20=100
3931OptDesc21=105
3932OptDesc22=110
3933OptDesc23=115
3934OptDesc24=120
3935OptDesc25=Other
3936OptDesc26=0
3937Default=25
3938
3939[WSI_TIMEOUT]
3940Caption=Timeout (Secs):
3941NumOpts=26
3942OptVal1=5
3943OptVal2=10
3944OptVal3=15
3945OptVal4=20
3946OptVal5=25
3947OptVal6=30
3948OptVal7=35
3949OptVal8=40
3950OptVal9=45
3951OptVal10=50
3952OptVal11=55
3953OptVal12=60
3954OptVal13=65
3955OptVal14=70
3956OptVal15=75
3957OptVal16=80
3958OptVal17=85
3959OptVal18=90
3960OptVal19=95
3961OptVal20=100
3962OptVal21=105
3963OptVal22=110
3964OptVal23=115
3965OptVal24=120
3966OptVal25=Other
3967OptDesc1=5
3968OptDesc2=10
3969OptDesc3=15
3970OptDesc4=20
3971OptDesc5=25
3972OptDesc6=30
3973OptDesc7=35
3974OptDesc8=40
3975OptDesc9=45
3976OptDesc10=50
3977OptDesc11=55
3978OptDesc12=60
3979OptDesc13=65
3980OptDesc14=70
3981OptDesc15=75
3982OptDesc16=80
3983OptDesc17=85
3984OptDesc18=90
3985OptDesc19=95
3986OptDesc20=100
3987OptDesc21=105
3988OptDesc22=110
3989OptDesc23=115
3990OptDesc24=120
3991OptDesc25=Other
3992OptDesc26=0
3993Default=25
3994
3995[WST_TIMEOUT]
3996Caption=Timeout (Secs):
3997NumOpts=26
3998OptVal1=5
3999OptVal2=10
4000OptVal3=15
4001OptVal4=20
4002OptVal5=25
4003OptVal6=30
4004OptVal7=35
4005OptVal8=40
4006OptVal9=45
4007OptVal10=50
4008OptVal11=55
4009OptVal12=60
4010OptVal13=65
4011OptVal14=70
4012OptVal15=75
4013OptVal16=80
4014OptVal17=85
4015OptVal18=90
4016OptVal19=95
4017OptVal20=100
4018OptVal21=105
4019OptVal22=110
4020OptVal23=115
4021OptVal24=120
4022OptVal25=Other
4023OptDesc1=5
4024OptDesc2=10
4025OptDesc3=15
4026OptDesc4=20
4027OptDesc5=25
4028OptDesc6=30
4029OptDesc7=35
4030OptDesc8=40
4031OptDesc9=45
4032OptDesc10=50
4033OptDesc11=55
4034OptDesc12=60
4035OptDesc13=65
4036OptDesc14=70
4037OptDesc15=75
4038OptDesc16=80
4039OptDesc17=85
4040OptDesc18=90
4041OptDesc19=95
4042OptDesc20=100
4043OptDesc21=105
4044OptDesc22=110
4045OptDesc23=115
4046OptDesc24=120
4047OptDesc25=Other
4048OptDesc26=0
4049Default=25
4050
4051[CF_OVERWRITE]
4052Caption=Overwrite Flag:
4053NumOpts=2
4054OptVal1=0
4055OptDesc1=Rename on collision
4056OptVal2=1
4057OptDesc2=Overwrite
4058Default=0
4059
4060[FTP_USETLS]
4061Caption=Use TLS/SSL:
4062NumOpts=4
4063OptVal1=0
4064OptDesc1=None
4065OptVal2=1
4066OptDesc2=Implicit TLS
4067OptVal3=2
4068OptDesc3=Require TLS
4069OptVal4=3
4070OptDesc4=Explicit TLS
4071Default=0
4072
4073[SSL_CERT]
4074Caption=SSL Cert File:
4075Type=Text
4076
4077[SSL_ROOT_CERT]
4078Caption=Root Cert File:
4079Type=Text
4080
4081[SSL_KEY]
4082Caption=SSL Key File:
4083Type=Text
4084
4085[HTTP_SSL]
4086Caption=Use SSL:
4087NumOpts=2
4088OptVal1=0
4089OptDesc1=NO
4090OptVal2=1
4091OptDesc2=YES
4092Default=0
4093
4094[FTP_STATUS]
4095Caption=Status Window:
4096NumOpts=2
4097OptVal1=0
4098OptDesc1=Hide Status Window
4099OptVal2=1
4100OptDesc2=Show Status Window
4101Default=1
4102
4103[FTP_TIMEOUT]
4104Caption=Timeout (Secs):
4105NumOpts=25
4106OptVal1=5
4107OptVal2=10
4108OptVal3=15
4109OptVal4=20
4110OptVal5=25
4111OptVal6=30
4112OptVal7=35
4113OptVal8=40
4114OptVal9=45
4115OptVal10=50
4116OptVal11=55
4117OptVal12=60
4118OptVal13=65
4119OptVal14=70
4120OptVal15=75
4121OptVal16=80
4122OptVal17=85
4123OptVal18=90
4124OptVal19=95
4125OptVal20=100
4126OptVal21=105
4127OptVal22=110
4128OptVal23=115
4129OptVal24=120
4130OptVal25=Other
4131OptDesc1=5
4132OptDesc2=10
4133OptDesc3=15
4134OptDesc4=20
4135OptDesc5=25
4136OptDesc6=30
4137OptDesc7=35
4138OptDesc8=40
4139OptDesc9=45
4140OptDesc10=50
4141OptDesc11=55
4142OptDesc12=60
4143OptDesc13=65
4144OptDesc14=70
4145OptDesc15=75
4146OptDesc16=80
4147OptDesc17=85
4148OptDesc18=90
4149OptDesc19=95
4150OptDesc20=100
4151OptDesc21=105
4152OptDesc22=110
4153OptDesc23=115
4154OptDesc24=120
4155OptDesc25=Other
4156Default=2
4157
4158[HTTP_TIMEOUT]
4159Caption=Timeout (Secs):
4160NumOpts=26
4161OptVal1=5
4162OptVal2=10
4163OptVal3=15
4164OptVal4=20
4165OptVal5=25
4166OptVal6=30
4167OptVal7=35
4168OptVal8=40
4169OptVal9=45
4170OptVal10=50
4171OptVal11=55
4172OptVal12=60
4173OptVal13=65
4174OptVal14=70
4175OptVal15=75
4176OptVal16=80
4177OptVal17=85
4178OptVal18=90
4179OptVal19=95
4180OptVal20=100
4181OptVal21=105
4182OptVal22=110
4183OptVal23=115
4184OptVal24=120
4185OptVal25=Other
4186OptVal26=None
4187OptDesc1=5
4188OptDesc2=10
4189OptDesc3=15
4190OptDesc4=20
4191OptDesc5=25
4192OptDesc6=30
4193OptDesc7=35
4194OptDesc8=40
4195OptDesc9=45
4196OptDesc10=50
4197OptDesc11=55
4198OptDesc12=60
4199OptDesc13=65
4200OptDesc14=70
4201OptDesc15=75
4202OptDesc16=80
4203OptDesc17=85
4204OptDesc18=90
4205OptDesc19=95
4206OptDesc20=100
4207OptDesc21=105
4208OptDesc22=110
4209OptDesc23=115
4210OptDesc24=120
4211OptDesc25=Other
4212optDesc26=0
4213Default=25
4214
4215[HTTP_REDIRECTS]
4216Caption=Redirects:
4217NumOpts=2
4218OptVal1=0
4219OptVal2=1
4220OptDesc1=Ignore Redirects
4221OptDesc2=Resolve Redirects
4222Default=1
4223
4224[POP3_STATUS]
4225Caption=Status Window:
4226NumOpts=2
4227OptVal1=0
4228OptDesc1=Hide Status Window
4229OptVal2=1
4230OptDesc2=Show Status Window
4231Default=1
4232
4233[POP3_PORT]
4234Caption=Port Number:
4235Type=Text
4236Default=110
4237
4238[POP3_TIMEOUT]
4239Caption=Timeout (Secs):
4240NumOpts=25
4241OptVal1=5
4242OptVal2=10
4243OptVal3=15
4244OptVal4=20
4245OptVal5=25
4246OptVal6=30
4247OptVal7=35
4248OptVal8=40
4249OptVal9=45
4250OptVal10=50
4251OptVal11=55
4252OptVal12=60
4253OptVal13=65
4254OptVal14=70
4255OptVal15=75
4256OptVal16=80
4257OptVal17=85
4258OptVal18=90
4259OptVal19=95
4260OptVal20=100
4261OptVal21=105
4262OptVal22=110
4263OptVal23=115
4264OptVal24=120
4265OptVal25=Other
4266OptDesc1=5
4267OptDesc2=10
4268OptDesc3=15
4269OptDesc4=20
4270OptDesc5=25
4271OptDesc6=30
4272OptDesc7=35
4273OptDesc8=40
4274OptDesc9=45
4275OptDesc10=50
4276OptDesc11=55
4277OptDesc12=60
4278OptDesc13=65
4279OptDesc14=70
4280OptDesc15=75
4281OptDesc16=80
4282OptDesc17=85
4283OptDesc18=90
4284OptDesc19=95
4285OptDesc20=100
4286OptDesc21=105
4287OptDesc22=110
4288OptDesc23=115
4289OptDesc24=120
4290OptDesc25=Other
4291Default=0
4292
4293[POP3_MSGSIZELIMIT]
4294Caption=Size Limit (Kb)
4295Type=Text
4296Default=0
4297
4298[POP3_DELETE]
4299Caption=Delete Flag
4300NumOpts=2
4301OptVal1=0
4302OptVal2=1
4303OptDesc1=Leave on Server
4304OptDesc2=Delete From Server
4305Default=0
4306
4307[SENDMAIL_STATUS]
4308Caption=Status Window:
4309NumOpts=2
4310OptVal1=0
4311OptDesc1=Hide Status Window
4312OptVal2=1
4313OptDesc2=Show Status Window
4314Default=1
4315
4316[SMTP_CCLIST]
4317Caption=CC List
4318Type=Text
4319Default=
4320
4321[SMTP_BCCLIST]
4322Caption=BCC List
4323Type=Text
4324Default=
4325
4326[SMTP_AUTH]
4327Caption=Authentication:
4328NumOpts=2
4329OptVal1=0
4330OptDesc1=None
4331OptVal2=1
4332OptDesc2=Auth
4333Default=0
4334
4335[SMTP_USERID]
4336Caption=SMTP User Id
4337Type=Text
4338Default=
4339
4340[SMTP_PASSWORD]
4341Caption=SMTP Password
4342Type=Text
4343Default=
4344
4345[SMTP_RECEIPT]
4346Caption=Return Receipt:
4347NumOpts=2
4348OptVal1=0
4349OptVal2=1
4350OptDesc1=Off
4351OptDesc2=On
4352Default=0
4353
4354[SMTP_PORT]
4355Caption=SMTP Port
4356Type=Text
4357Default=25
4358
4359[SK_DELAY]
4360Caption=Keysend Delay
4361Type=Text
4362Default=0
4363
4364[SK_IGNORECAPS]
4365Caption=Ignore Capslock
4366NumOpts=2
4367OptVal1=0
4368OptVal2=1
4369OptDesc1=No
4370OptDesc2=Yes
4371Default=0
4372
4373[SK_LEGACY]
4374Caption=Keysend Method
4375NumOpts=2
4376OptVal1=0
4377OptVal2=1
4378OptDesc1=Regular
4379OptDesc2=Legacy
4380Default=0
4381
4382[ASK_TIMEOUT]
4383Caption=Timeout
4384Type=Text
4385Default=0
4386
4387
4388[INPUT_TIMEOUT]
4389Caption=Timeout
4390Type=Text
4391Default=0
4392
4393[INPUT_BROWSE]
4394Caption=Browse Button
4395NumOpts=2
4396OptVal1=0
4397OptVal2=1
4398OptDesc1=Hide
4399OptDesc2=Show
4400Default=1
4401
4402[INPUT_PASSWORD]
4403Caption=Password Mask
4404NumOpts=2
4405OptVal1=0
4406OptVal2=1
4407OptDesc1=No Mask
4408optDesc2=Mask
4409Default=0
4410
4411[MSG_STAYONTOP]
4412Caption=Stay on top
4413NumOpts=2
4414OptVal1=0
4415OptVal2=1
4416OptDesc1=No
4417optDesc2=Yes
4418Default=0
4419
4420[MSG_CENTERED]
4421Caption=Centered
4422NumOpts=2
4423OptVal1=0
4424OptVal2=1
4425OptDesc1=No
4426optDesc2=Yes
4427Default=0
4428
4429[MSG_XPOS]
4430Caption=X Position
4431Type=Text
4432Default=0
4433
4434[MSG_YPOS]
4435Caption=Y Position
4436Type=Text
4437Default=0
4438
4439[MSG_HEIGHT]
4440Caption=Height
4441Type=Text
4442Default=0
4443
4444[MSG_WIDTH]
4445Caption=Width
4446Type=Text
4447Default=0
4448
4449[REG_INTASSTR]
4450Caption=Write Type
4451NumOpts=2
4452OptVal1=0
4453OptVal2=1
4454OptDesc1=Automatic
4455OptDesc2=Write as String
4456Default=0
4457
4458[CRYPT_LEVEL]
4459Caption=Strength
4460NumOpts=3
4461OptVal1=1
4462OptVal2=2
4463OptVal3=3
4464OptDesc1=32 Bit (Default)
4465OptDesc2=64 Bit
4466OptDesc3=96 Bit
4467Default=0
4468
4469[VBS_TIMEOUT]
4470Caption=Timeout
4471Type=Text
4472Default=0
4473
4474[GAW_TYPE]
4475Caption=Window Type:
4476NumOpts=2
4477OptVal1=0
4478OptVal2=1
4479OptDesc1=Active Main Windows
4480OptDesc2=Active Child Windows
4481Default=0
4482
4483[GFL_TYPE]
4484Caption=File Type:
4485NumOpts=2
4486OptVal1=0
4487OptVal2=1
4488OptDesc1=Files Only
4489OptDesc2=Folders Only
4490Default=0
4491
4492[GFL_SORTTYPE]
4493Caption=Sort Type:
4494NumOpts=7
4495OptVal1=0
4496OptVal2=1
4497OptVal3=2
4498OptVal4=3
4499OptVal5=4
4500OptVal6=5
4501OptVal7=6
4502OptDesc1=No Sort
4503OptDesc2=Date ascending
4504OptDesc3=Date descending
4505OptDesc4=Name ascending
4506OptDesc5=Name descending
4507OptDesc6=Size ascending
4508OptDesc7=Size descending
4509Default=0
4510
4511
4512[MF_RENAME]
4513Caption=Rename or Move:
4514NumOpts=2
4515OptVal1=0
4516OptVal2=1
4517OptDesc1=Move Entire File
4518OptDesc2=Rename Only
4519Default=0
4520
4521[WLN_NOCRLF]
4522Caption=CRLFs:
4523NumOpts=2
4524OptVal1=0
4525OptVal2=1
4526OptDesc1=Include CRLFs
4527OptDesc2=No CRLFs
4528Default=0
4529
4530[WFP_TIMEOUT]
4531Caption=Timeout:
4532NumOpts=26
4533OptVal1=5
4534OptVal2=10
4535OptVal3=15
4536OptVal4=20
4537OptVal5=25
4538OptVal6=30
4539OptVal7=35
4540OptVal8=40
4541OptVal9=45
4542OptVal10=50
4543OptVal11=55
4544OptVal12=60
4545OptVal13=65
4546OptVal14=70
4547OptVal15=75
4548OptVal16=80
4549OptVal17=85
4550OptVal18=90
4551OptVal19=95
4552OptVal20=100
4553OptVal21=105
4554OptVal22=110
4555OptVal23=115
4556OptVal24=120
4557OptVal25=Other
4558OptDesc1=5
4559OptDesc2=10
4560OptDesc3=15
4561OptDesc4=20
4562OptDesc5=25
4563OptDesc6=30
4564OptDesc7=35
4565OptDesc8=40
4566OptDesc9=45
4567OptDesc10=50
4568OptDesc11=55
4569OptDesc12=60
4570OptDesc13=65
4571OptDesc14=70
4572OptDesc15=75
4573OptDesc16=80
4574OptDesc17=85
4575OptDesc18=90
4576OptDesc19=95
4577OptDesc20=100
4578OptDesc21=105
4579OptDesc22=110
4580OptDesc23=115
4581OptDesc24=120
4582OptDesc25=Other
4583OptDesc26=0
4584Default=25
4585
4586[REG_64]
4587Caption=Use 64 bit Hive:
4588NumOpts=2
4589OptVal1=0
4590OptVal2=1
4591OptDesc1=No
4592OptDesc2=Yes
4593Default=0
4594
4595[FIP_SCANPIXELS]
4596Caption=Num pixels to scan:
4597Type=Text
4598
4599[_Abbreviations]
4600GCB=GetClipBoard
4601Put=PutClipBoard
4602WCB=WaitClipBoard
4603DOW=DDayOfWeek
4604GDT=GetDate
4605GTM=GetTime
4606Mon=Month
4607DPK=DDDEPoke
4608DRQ=DDERequest
4609CDG=CloseDialog
4610GDA=GetDialogAction
4611RDA=ResetDialogAction
4612App=AppendFile
4613Cha=ChangeDirectory
4614Cop=CopyFile
4615Cou=CountFiles
4616Cre=CreateDir
4617Del=DeleteFile
4618Edi=EditIniFile
4619FDT=FileDate
4620FSZ=FileSize
4621FTM=FileTime
4622GFL=GetFileList
4623IFD=IfDirExists
4624IFC=IfFileChanged
4625IFE=IfFileExists
4626Mov=MoveFile
4627RFL=ReadFile
4628RLN=ReadLn
4629Ren=RenameFile
4630WLN=WriteLn
4631FDF=FTPDelFile
4632FGD=FTPGetDirList
4633FGF=FTPGetFile
4634FPF=FTPPutFile
4635FRF=FTPRenameFile
4636HTT=HTTPRequest
4637RET=RetrievePOP3
4638SMT=SMTPSendMail
4639TNQ=TelnetClose
4640TNC=TelnetConnect
4641TNS=TelnetSend
4642TNW=TelnetWaitFor
4643IFW=IfWindowOpen
4644CPB=CompareBitmaps
4645FIP=FindImagePos
4646GSR=GetScreenRes
4647SCP=ScreenCapture
4648WSI=WaitScreenImage
4649ASC=Ascii
4650COF=CapsOff
4651CAP=CapsOn
4652NOF=NumOff
4653NON=NumOn
4654SOF=ScrollOff
4655SON=ScrollOn
4656Sen=Send Character/Text
4657WKD=WaitKeyDown
4658Inp=Input
4659MSG=Message
4660MDL=MessageModal
4661Ass=Assigned
4662Blo=BlockInput
4663Dat=DateStamp
4664CBX=GetCheckBox
4665GCT=GetControlText
4666GEV=GetEnvVar
4667GLI=GetListItem
4668GPC=GetPixelColor
4669GRC=GetRectCheckSum
4670GTN=GetTreeNode
4671LFR=LibFree
4672Lib=LibFunc
4673LIW=LibFuncW
4674LLD=LibLoad
4675Pla=PlayWav
4676PUS=PushButton
4677Ran=Random
4678MNU=SelectMenu
4679SBX=SetCheckBox
4680SCT=SetControlText
4681SEV=SetEnvVar
4682Tim=TimeStamp
4683WCC=WaitCursorChanged
4684WPC=WaitPixelColor
4685WRC=WaitRectChanged
4686GTP=GetCaretPos
4687GCP=GetCursorPos
4688LCL=LClick
4689LDB=LDblClick
4690LDO=LDown
4691MCL=MClick
4692MDB=MDblClick
4693MDO=MDown
4694MOU=MouseMove
4695MMR=MouseMoveRel
4696MVR=MouseOver
4697RCL=RClick
4698RDB=RDblClick
4699RDO=RDown
4700TBR=Toolbar
4701RDK=RegistryDelKey
4702RDV=RegistryDelVal
4703RRK=RegistryReadKey
4704RWK=RegistryWriteKey
4705Exe=ExecuteFile
4706Mac=Macro
4707ONE=OnEvent
4708Wai=Wait
4709WRD=WaitReady
4710Con=ConCat
4711Cry=Crypt
4712Len=Length
4713Mid=MidStr
4714Pos=Position
4715Sep=Separate
4716RPL=StringReplace
4717VBE=VBEval
4718VBR=VBRun
4719Clo=CloseWindow
4720Fin=FindWindowWithText
4721GAW=GetActiveWindow
4722GWH=GetWindowHandle
4723GWP=GetWindowPos
4724GWS=GetWndowSize
4725GPW=GetWindowProcess
4726GWT=GetWindowText
4727MVW=MoveWindow
4728RSW=ResizeWindow
4729Set=SetFocus
4730SDW=ShutDownWindows
4731WWX=WaitWindowChanged
4732WWC=WaitWindowClosed
4733WWO=WaitWindowOpen
4734WIN=WindowAction
4735BAS=Base64
4736FRD=FTPRemoveDir
4737FMD=FTPMakeDir
4738EXI=Exit
4739SDC=SetDialogObjectColor
4740SDF=SetDialogObjectFont
4741GWL=GetWindowList
4742GTA=GetTextAtPoint
4743GTI=GetTextInRect
4744GWE=GetWindowTextEx
4745WST=WaitScreenText
4746DBC=DBConnect
4747DBX=DBClose
4748DBE=DBExec
4749DBQ=DBQuery
4750EXP=ExportData
4751SOW=SOWrite
4752SOL=SOWriteLn
4753SDV=SetDialogObjectVisible
4754DSF=SetDialogObjectFocus
4755GWS=GetWindowSize
4756RGX=RegEx
4757GTR=GetTextReset
4758GFO=GetFocusedObject
4759CSV=CSVFileToArray
4760SKI=SkipLabel
4761L2V=LabelToVar
4762ARC=ArrayCount
4763ARS=ArraySort
4764WPE=WaitProcessExists
4765WPT=WaitProcessTerminated
4766PRO=ProcessExists
4767XLC=XLCreate
4768XLO=XLOpen
4769XGC=XLGetCell
4770XSC=XLSetCell
4771XLS=XLSave
4772XLQ=XLQuit
4773XAS=XLAddSheet
4774XDS=XLDelSheet
4775XDR=XLDelRow
4776XDC=XLDelCol
4777XLR=XLRun
4778XSD=XLGetSheetDims
4779ADH=AddDialogHandler
4780SDP=SetDialogProperty
4781GDP=GetDialogProperty
4782ATI=AddTrayIcon
4783DTI=DelTrayIcon
4784ATH=AddTrayHandler
4785EFE=ExtractFileExt
4786EFN=ExtractFileName
4787EFP=ExtractFilePath
4788ISC=IsConnectedToInternet
4789UPP=UpperCase
4790LOW=LowerCase
4791TRI=Trim
4792LTR=LTrim
4793RTR=RTrim
4794GWN=GetWindowNames
4795PTD=PrintDialog
4796WWF=WaitWindowFocused
4797ACP=ArrayCopy
4798ARN=ArrayRename
4799OCR=OCRFile
4800OCS=OCRScreen
4801OCW=OCRWindow
4802OCA=OCRArea