home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Extras / autoit_v3.tcl < prev    next >
Text File  |  2004-02-17  |  17KB  |  945 lines

  1. !TCL=3080,  means function retuns a value; means it setserror
  2. !TITLE=AutoIt v3
  3. !SORT=Y
  4. !CHARSET=ANSI
  5.  
  6. !TEXT=#cs...#ce
  7. #cs
  8.     \^
  9. #ce 
  10. !
  11. !TEXT=Func...EndFunc
  12. Func functioname([ByRef] param1, [ByRef] paramN)
  13.     \^
  14.     [Return x]
  15. EndFunc
  16. !
  17. !TEXT=ContinueLoop
  18. ContinueLoop
  19. !
  20. !TEXT=Do...Until
  21. Do
  22.     \^
  23. Until <expression>
  24. !
  25. !TEXT=ExitLoop
  26. ExitLoop [level]
  27. !
  28. !TEXT=For...Next
  29. For <variable> = <start> To <end> [Step <stepval>]
  30.     \^
  31. Next
  32. !
  33. !TEXT=If...Else...EndIf
  34. If <expression> [Then]
  35.     \^
  36. Else
  37.     
  38. EndIf
  39. !
  40. !TEXT=Select...Case...EndSelect
  41. Select
  42.     Case <expression>
  43.         \^
  44.     Case Else
  45.         
  46. EndSelect  
  47. !
  48. !TEXT=While...WEnd
  49. While <expression>
  50.     \^
  51. WEnd 
  52. !
  53.  
  54. !TEXT=ClipGet 
  55. ClipGet()
  56. !
  57. !TEXT=ClipPut 
  58. ClipPut(\^"value")
  59. !
  60. !TEXT=EnvGet
  61. EnvGet(\^"envvariable")
  62. !
  63. !TEXT=EnvSet 
  64. EnvSet(\^"envvariable", "value")
  65. !
  66. !TEXT=EnvUpdate
  67. EnvUpdate()
  68. !
  69.  
  70. !TEXT=DirCopy 
  71. DirCopy(\^"source dir", "dest dir" [, flag])
  72. !
  73. !TEXT=DirCreate 
  74. DirCreate(\^"path")
  75. !
  76. !TEXT=DirMove 
  77. DirMove(\^"source dir", "dest dir" [, flag])
  78. !
  79. !TEXT=DirRemove 
  80. DirRemove(\^"path" [,recurse])
  81. !
  82. !TEXT=DriveGetDrive 
  83. DriveGetDrive(\^"type")
  84. !
  85. !TEXT=DriveGetFileSystem 
  86. DriveGetFileSystem(\^"path")
  87. !
  88. !TEXT=DriveGetLabel 
  89. DriveGetLabel(\^"path")
  90. !
  91. !TEXT=DriveGetSerial 
  92. DriveGetSerial(\^"path")
  93. !
  94. !TEXT=DriveGetType 
  95. DriveGetType(\^"path")
  96. !
  97. !TEXT=DriveSetLabel 
  98. DriveSetLabel(\^"path", "label")
  99. !
  100. !TEXT=DriveSpaceFree 
  101. DriveSpaceFree(\^"path")
  102. !
  103. !TEXT=DriveSpaceTotal 
  104. DriveSpaceTotal(\^"path")
  105. !
  106. !TEXT=DriveStatus 
  107. DriveStatus(\^"path")
  108. !
  109. !TEXT=FileChangeDir
  110. FileChangeDir(\^"path")
  111. !
  112. !TEXT=FileClose
  113. FileClose(filehandle)
  114. !
  115. !TEXT=FileCopy 
  116. FileCopy(\^"source", "dest" [,flag])
  117. !
  118. !TEXT=FileCreateShortcut 
  119. FileCreateShortcut(\^"file", "lnk" [,"workdir", "args", "desc", "icon", "hotkey"])
  120. !
  121. !TEXT=FileDelete 
  122. FileDelete(\^"path")
  123. !
  124. !TEXT=FileExists 
  125. FileExists(\^"path")
  126. !
  127. !TEXT=FileFindFirstFile 
  128. FileFindFirstFile(\^"filename")
  129. !
  130. !TEXT=FileFindNextFile 
  131. FileFindNextFile(filehandle)
  132. !
  133. !TEXT=FileGetAttrib 
  134. FileGetAttrib(\^"filename")
  135. !
  136. !TEXT=FileGetLongName 
  137. FileGetLongName(\^"file")
  138. !
  139. !TEXT=FileGetShortName 
  140. FileGetShortName(\^"file")
  141. !
  142. !TEXT=FileGetSize 
  143. FileGetSize(\^"filename")
  144. !
  145. !TEXT=FileGetTime 
  146. FileGetTime(\^"filename" [,option])
  147. !
  148. !TEXT=FileGetVersion 
  149. FileGetVersion(\^"filename")
  150. !
  151. !TEXT=FileInstall 
  152. FileInstall(\^"source", "dest" [,flag])
  153. !
  154. !TEXT=FileMove 
  155. FileMove(\^"source", "dest" [,flag])
  156. !
  157. !TEXT=FileOpen 
  158. FileOpen(\^"filename", mode)
  159. !
  160. !TEXT=FileOpenDialog 
  161. FileOpenDialog(\^"title", "init dir", "filter", [options])
  162. !
  163. !TEXT=FileRead
  164. FileRead(\^filehandle_or_filename, count)
  165. !
  166. !TEXT=FileReadLine 
  167. FileReadLine(\^filehandle_or_filename, [line])
  168. !
  169. !TEXT=FileRecycle 
  170. FileRecycle(\^"source")
  171. !
  172. !TEXT=FileSaveDialog 
  173. FileSaveDialog(\^"title", "init dir", "filter", [options]) 
  174. !
  175. !TEXT=FileSelectFolder 
  176. FileSelectFolder(\^"dialog text", "root dirtext", flag)
  177. !
  178. !TEXT=FileSetAttrib 
  179. FileSetAttrib(\^"file pattern", "+-RASHNOT" [, recurse])
  180. !
  181. !TEXT=FileSetTime 
  182. FileSetTime(\^"file pattern", "time", type [, recurse])
  183. !
  184. !TEXT=FileWrite
  185. FileWrite(\^filehandle_or_filename, "line") 
  186. !
  187. !TEXT=FileWriteLine 
  188. FileWriteLine(\^filehandle_or_filename, "line") 
  189. !
  190. !TEXT=IniDelete
  191. IniDelete(\^"filename", "section", "key")
  192. !
  193. !TEXT=IniRead 
  194. IniRead(\^"filename", "section", "key", "default")
  195. !
  196. !TEXT=IniWrite
  197. IniWrite(\^"filename", "section", "key", "value")
  198. !
  199.  
  200. !TEXT=HotKeySet
  201. HotKeySet(\^"key", ["function"])
  202. !
  203. !TEXT=Send
  204. Send(\^"keys", [flag])
  205. !
  206. !TEXT=SendAttachMode (Option)
  207. AutoItSetOption("SendAttachMode", \^param) 
  208. !
  209. !TEXT=SendCapslockMode (Option)
  210. AutoItSetOption("SendCapslockMode", \^param) 
  211. !
  212. !TEXT=SendKeyDelay (Option)
  213. AutoItSetOption("SendKeyDelay", \^param) 
  214. !
  215. !TEXT=SendKeyDownDelay (Option)
  216. AutoItSetOption("SendKeyDownDelay", \^param) 
  217. !
  218. !TEXT=SendSetCapslockState
  219. SendSetCapslockState(state) 
  220. !
  221.  
  222. !TEXT=Abs 
  223. Abs(expression)
  224. !
  225. !TEXT=ACos 
  226. ACos(expression)
  227. !
  228. !TEXT=ASin 
  229. ASin(expression)
  230. !
  231. !TEXT=Atan 
  232. ATan(expression)
  233. !
  234. !TEXT=BitAND 
  235. BitAND(value1, value2)
  236. !
  237. !TEXT=BitNOT 
  238. BitNOT(value)
  239. !
  240. !TEXT=BitOR 
  241. BitOR(value1, value2)
  242. !
  243. !TEXT=BitShift 
  244. BitShift(value, shift)
  245. !
  246. !TEXT=BitXOR 
  247. BitXOR(value1, value2)
  248. !
  249. !TEXT=Cos 
  250. Cos(expression)
  251. !
  252. !TEXT=Exp 
  253. Exp(expression)
  254. !
  255. !TEXT=Log 
  256. Log(expression)
  257. !
  258. !TEXT=Mod 
  259. Mod(value1, value2)
  260. !
  261. !TEXT=Random 
  262. Random( [[Min ,] Max])
  263. !
  264. !TEXT=Round 
  265. Round(expression [, decimalplaces])
  266. !
  267. !TEXT=Sin 
  268. Sin(expression)
  269. !
  270. !TEXT=Sqrt 
  271. Sqrt(expression)
  272. !
  273. !TEXT=Tan 
  274. Tan(expression)
  275. !
  276.  
  277. !TEXT=InputBox 
  278. InputBox(\^"title", "Prompt" [, "Default" [, "password char" [, Width, Height [, Left, Top] [, Timeout]]]] )
  279. !
  280. !TEXT=MsgBox 
  281. MsgBox(flag, "title", "text" [, timeout] ) 
  282. !
  283. !TEXT=ProgressOff
  284. ProgressOff()
  285. !
  286. !TEXT=ProgressOn
  287. ProgressOn(\^"title", "maintext" [, "subtext"] [, x pos] [, y pos] [, opt] )
  288. !
  289. !TEXT=ProgressSet
  290. ProgressSet(percent [, "subtext"] [, "maintext"] )
  291. !
  292. !TEXT=SplashImageOn
  293. SplashImageOn(\^"title", "file" [, width] [, height] [, x pos] [, y pos] [, opt] )
  294. !
  295. !TEXT=SplashOff
  296. SplashOff()
  297. !
  298. !TEXT=SplashTextOn
  299. SplashTextOn(\^"title", "text" [, w] [, h] [, x pos] [, y pos] [, opt] [, "fontname"] [, "fontsz"] [, "fontwt"] )
  300. !
  301.  
  302. !TEXT=AdlibDisable
  303. AdlibDisable()
  304. !
  305. !TEXT=AdlibEnable
  306. AdlibEnable(\^"function" [,time] )
  307. !
  308. !TEXT=AutoItSetOption
  309. AutoItSetOption(\^"option", param )
  310. !
  311. !TEXT=AutoItWinGetTitle
  312. AutoItWinGetTitle()
  313. !
  314. !TEXT=AutoItWinSetTitle
  315. AutoItWinSetTitle(\^"newtitle")
  316. !
  317. !TEXT=BlockInput
  318. BlockInput(flag)
  319. !
  320. !TEXT=Break
  321. Break(mode)
  322. !
  323. !TEXT=Call
  324. Call(\^"function")
  325. !
  326. !TEXT=CDTray 
  327. CDTray(\^"drive", "status")
  328. !
  329. !TEXT=ExpandEnvStrings (Option)
  330. AutoItSetOption("ExpandEnvStrings", \^param)
  331. !
  332. !TEXT=Opt
  333. Opt(\^"option", param )
  334. !
  335. !TEXT=MustDeclaredVars (Option)
  336. AutoItSetOption("MustDeclaredVars", \^param)
  337. !
  338. !TEXT=PixelCoordMode (Option)
  339. AutoItSetOption("PixelCoordMode", \^param)
  340. !
  341. !TEXT=PixelGetColor 
  342. PixelGetColor(x, y)
  343. !
  344. !TEXT=PixelSearch 
  345. PixelSearch(left, top, right, bottom, color [, shade-variation] [, step]])
  346. !
  347. !TEXT=SetError
  348. SetError(code)
  349. !
  350. !TEXT=SoundPlay
  351. SoundPlay(\^"filename" [,wait] )
  352. !
  353. !TEXT=SoundSetWaveVolume
  354. SoundSetWaveVolume(percent)
  355. !
  356. !TEXT=TimerStart 
  357. TimerStart()
  358. !
  359. !TEXT=TimerStop 
  360. TimerStop(timestamp) 
  361. !
  362. !TEXT=TrayIconHide (Option)
  363. AutoItSetOption("TrayIconHide", \^param)
  364. !
  365. !TEXT=TrayIconDebug (Option)
  366. AutoItSetOption("TrayIconDebug", \^param)
  367. !
  368. !TEXT=URLDownloadToFile 
  369. URLDownloadToFile(\^"URL", "filename")
  370. !
  371.  
  372. !TEXT=MouseClick
  373. MouseClick(\^"button" [[[,x ,y] ,clicks] ,speed] ) 
  374. !
  375. !TEXT=MouseClickDelay (Option)
  376. AutoItSetOption("MouseClickDelay", \^param)
  377. !
  378. !TEXT=MouseClickDownDelay (Option)
  379. AutoItSetOption("MouseClickDownDelay", \^param)
  380. !
  381. !TEXT=MouseCoordMode (Option)
  382. AutoItSetOption("MouseCoordMode", \^param)
  383. !
  384. !TEXT=MouseClickDrag
  385. MouseClickDrag( "button" ,x1,y1,x2,y2 [,speed] ) 
  386. !
  387. !TEXT=MouseClickDragDelay (Option)
  388. AutoItSetOption("MouseClickDragDelay", \^param)
  389. !
  390. !TEXT=MouseCoordMode (Option)
  391. AutoItSetOption("MouseCoordMode", \^param)
  392. !
  393. !TEXT=MouseGetCursor 
  394. MouseGetCursor()
  395. !
  396. !TEXT=MouseGetPos 
  397. MouseGetPos()
  398. !
  399. !TEXT=MouseMove
  400. MouseMove( x, y [,speed] )
  401. !
  402.  
  403. !TEXT=ProcessClose
  404. ProcessClose(\^"process")
  405. !
  406. !TEXT=ProcessExists 
  407. ProcessExists(\^"process")
  408. !
  409. !TEXT=ProcessWait 
  410. ProcessWait(\^"process", [timeout])
  411. !
  412. !TEXT=ProcessWaitClose 
  413. ProcessWaitClose(\^"process", [timeout] )
  414. !
  415. !TEXT=Run
  416. Run(\^"filename", ["workingdir"], [flag] )
  417. !
  418. !TEXT=RunAsSet 
  419. RunAsSet(["user", "domain", "password"] )
  420. !
  421. !TEXT=RunErrorsFatal (Option)
  422. AutoItSetOption("RunErrorsFatal", \^param)
  423. !
  424. !TEXT=RunWait 
  425. RunWait(\^"filename", ["workingdir"], [flag] )
  426. !
  427. !TEXT=Shutdown 
  428. Shutdown(code)
  429. !
  430. !TEXT=Sleep
  431. Sleep(msDelay)
  432. !
  433.  
  434. !TEXT=RegDelete 
  435. RegDelete(\^"keyname", ["valuename"] )
  436. !
  437. !TEXT=RegRead 
  438. RegRead(\^"keyname", "valuename")
  439. !
  440. !TEXT=RegWrite 
  441. RegWrite(\^"keyname", "valuename", "type", value)
  442. !
  443.  
  444. !TEXT=StringAddCR 
  445. StringAddCR(\^"string")
  446. !
  447. !TEXT=StringInStr 
  448. StringInStr(\^"string", "substring", [casesense] )
  449. !
  450. !TEXT=StringIsAlNum 
  451. StringIsAlNum(\^"string")
  452. !
  453. !TEXT=StringIsAlpha 
  454. StringIsAlpha(\^"string")
  455. !
  456. !TEXT=StringIsASCII 
  457. StringIsASCII(\^"string")
  458. !
  459. !TEXT=StringIsDigit 
  460. StringIsDigit(\^"string")
  461. !
  462. !TEXT=StringIsFloat 
  463. StringIsFloat(\^"string")
  464. !
  465. !TEXT=StringIsInt 
  466. StringIsInt(\^"string")
  467. !
  468. !TEXT=StringIsLower 
  469. StringIsLower(\^"string")
  470. !
  471. !TEXT=StringIsSpace 
  472. StringIsSpace(\^"string")
  473. !
  474. !TEXT=StringIsUpper 
  475. StringIsUpper(\^"string")
  476. !
  477. !TEXT=StringIsXDigit 
  478. StringIsXDigit(\^"string")
  479. !
  480. !TEXT=StringLeft 
  481. StringLeft(\^"string", count)
  482. !
  483. !TEXT=StringLen 
  484. StringLen(\^"string")
  485. !
  486. !TEXT=StringLower 
  487. StringLower(\^"string")
  488. !
  489. !TEXT=StringMid 
  490. StringMid(\^"string", start, count) 
  491. !
  492. !TEXT=StringReplace 
  493. StringReplace(\^"string", "searchstring", "replacestring" [, count [, casesense]] )
  494. !
  495. !TEXT=StringRight 
  496. StringRight(\^"string", count)
  497. !
  498. !TEXT=StringSplit 
  499. StringSplit(\^"string", "delimiters")
  500. !
  501. !TEXT=StringStripCR 
  502. StringStripCR(\^"string")
  503. !
  504. !TEXT=StringStripWS 
  505. StringStripWS(\^"string", flag)
  506. !
  507. !TEXT=StringTrimLeft 
  508. StringTrimLeft(\^"string", count)
  509. !
  510. !TEXT=StringTrimRight 
  511. StringTrimRight(\^"string", count)
  512. !
  513. !TEXT=StringUpper 
  514. StringUpper(\^"string")
  515. !
  516.  
  517. !TEXT=Asc 
  518. Asc(\^"char")
  519. !
  520. !TEXT=Chr 
  521. Chr(ASCIIcode)
  522. !
  523. !TEXT=Dec 
  524. Dec("hex")
  525. !
  526. !TEXT=Eval 
  527. Eval(expression)
  528. !
  529. !TEXT=Hex 
  530. Hex(number, length)
  531. !
  532. !TEXT=Int 
  533. Int(expression)
  534. !
  535. !TEXT=IsAdmin 
  536. IsAdmin()
  537. !
  538. !TEXT=IsArray 
  539. IsArray(variable)
  540. !
  541. !TEXT=IsDeclared
  542. IsDeclared("string")
  543. !
  544. !TEXT=IsFloat 
  545. IsFloat(variable)
  546. !
  547. !TEXT=IsInt 
  548. IsInt(variable)
  549. !
  550. !TEXT=IsNumber 
  551. IsNumber(variable)
  552. !
  553. !TEXT=IsString 
  554. IsString(variable)
  555. !
  556. !TEXT=Number 
  557. Number(expression)
  558. !
  559. !TEXT=String 
  560. String(expression)
  561. !
  562. !TEXT=UBound 
  563. UBound(Array [, Dimension] )
  564. !
  565.  
  566. !TEXT=ControlCommand
  567. ControlCommand(\^"title", "text", "classnameNN", "command" ,"option")
  568. !
  569. !TEXT=ControlCommand - IsVisible 
  570. ControlCommand(\^"title", "text", "classnameNN", "IsVisible", "")
  571. !
  572. !TEXT=ControlCommand - IsEnabled 
  573. ControlCommand(\^"title", "text", "classnameNN", "IsEnabled", "")
  574. !
  575. !TEXT=ControlCommand - ShowDropDown
  576. ControlCommand(\^"title", "text", "classnameNN", "ShowDropDown", "")
  577. !
  578. !TEXT=ControlCommand - HideDropDown
  579. ControlCommand(\^"title", "text", "classnameNN", "HideDropDown", "")
  580. !
  581. !TEXT=ControlCommand - AddString
  582. ControlCommand(\^"title", "text", "classnameNN", "AddString", "string")
  583. !
  584. !TEXT=ControlCommand - DelString
  585. ControlCommand(\^"title", "text", "classnameNN", "DelString", occurrence)
  586. !
  587. !TEXT=ControlCommand - FindString 
  588. ControlCommand(\^"title", "text", "classnameNN", "FindString", "string")
  589. !
  590. !TEXT=ControlCommand - SetCurrentSelection
  591. ControlCommand(\^"title", "text", "classnameNN", "SetCurrentSelection", occurrence)
  592. !
  593. !TEXT=ControlCommand - SelectString
  594. ControlCommand(\^"title", "text", "classnameNN", "SelectString", "string")
  595. !
  596. !TEXT=ControlCommand - IsChecked 
  597. ControlCommand(\^"title", "text", "classnameNN", "IsChecked", "")
  598. !
  599. !TEXT=ControlCommand - Check
  600. ControlCommand(\^"title", "text", "classnameNN", "Check", "")
  601. !
  602. !TEXT=ControlCommand - UnCheck
  603. ControlCommand(\^"title", "text", "classnameNN", "UnCheck", "")
  604. !
  605. !TEXT=ControlCommand - GetCurrentSelection 
  606. GetCurrentSelection(\^"title", "text", "classnameNN", "GetCurrentSelection", "")
  607. !
  608. !TEXT=ControlCommand - GetLineCount 
  609. ControlCommand(\^"title", "text", "classnameNN", "GetLineCount", "")
  610. !
  611. !TEXT=ControlCommand - GetCurrentLine 
  612. ControlCommand(\^"title", "text", "classnameNN", "GetCurrentLine", "")
  613. !
  614. !TEXT=ControlCommand - GetLine 
  615. ControlCommand(\^"title", "text", "classnameNN", "GetLine", line#)
  616. !
  617. !TEXT=ControlCommand - GetSelected 
  618. ControlCommand(\^"title", "text", "classnameNN", "GetSelected", "")
  619. !
  620. !TEXT=ControlCommand - EditPaste
  621. ControlCommand(\^"title", "text", "classnameNN", "EditPaste", "string")
  622. !
  623. !TEXT=ControlCommand - CurrentTab 
  624. ControlCommand(\^"title", "text", "classnameNN", "CurrentTab", "")
  625. !
  626. !TEXT=ControlCommand - TabRight
  627. ControlCommand(\^"title", "text", "classnameNN", "TabRight", "")
  628. !
  629. !TEXT=ControlCommand - TabLeft
  630. ControlCommand(\^"title", "text", "classnameNN", "TabLeft", "")
  631. !
  632.  
  633.  
  634. !TEXT=ControlDisable
  635. ControlDisable(\^"title", "text", "classnameNN")
  636. !
  637. !TEXT=ControlEnable
  638. ControlEnable(\^"title", "text", "classnameNN")
  639. !
  640. !TEXT=ControlFocus
  641. ControlFocus(\^"title", "text", "classnameNN")
  642. !
  643. !TEXT=ControlGetFocus 
  644. ControlGetPos(\^"title", ["text"] )
  645. !
  646. !TEXT=ControlGetPos 
  647. ControlGetPos(\^"title", "text", "classnameNN")
  648. !
  649. !TEXT=ControlGetText 
  650. ControlGetText(\^"title", "text", "classnameNN")
  651. !
  652. !TEXT=ControlHide
  653. ControlHide(\^"title", "text", "classnameNN")
  654. !
  655. !TEXT=ControlClick
  656. ControlClick(\^"title", "text", "classnameNN" [, button] [, clicks]])
  657. !
  658. !TEXT=ControlMove
  659. ControlMove(\^"title", "text", "classnameNN", x, y [,width] [,height] )
  660. !
  661. !TEXT=ControlSend
  662. ControlSend(\^"title", "text", "classnameNN", "string")
  663. !
  664. !TEXT=ControlSetText
  665. ControlSetText(\^"title", "text", "classnameNN", "new text")
  666. !
  667. !TEXT=ControlShow
  668. ControlShow(\^"title", "text", "classnameNN")
  669. !
  670. !TEXT=StatusbarGetText 
  671. StatusbarGetText(\^"title", [["text"], part] )
  672. !
  673.  
  674. !TEXT=CaretCoordMode (Option)
  675. AutoItSetOption("CaretCoordMode", \^param)
  676. !
  677. !TEXT=WinActivate
  678. WinActivate(\^"title", ["text"] )
  679. !
  680. !TEXT=WinActive 
  681. WinActive(\^"title", ["text"] )
  682. !
  683. !TEXT=WinClose
  684. WinClose(\^"title", ["text"] )
  685. !
  686. !TEXT=WinDetectHiddenText (Option)
  687. AutoItSetOption("WinDetectHiddenText", \^param)
  688. !
  689. !TEXT=WinExists 
  690. WinExists(\^"title", ["text"] )
  691. !
  692. !TEXT=WinGetCaretPos 
  693. WinGetCaretPos( )
  694. !
  695. !TEXT=WinGetClassList 
  696. WinGetClassList(\^"title", ["text"] )
  697. !
  698. !TEXT=WinGetClientSize 
  699. WinGetClientSize(\^"title", ["text"] )
  700. !
  701. !TEXT=WinGetPos 
  702. WinGetPos(\^"title", ["text"] )
  703. !
  704. !TEXT=WinGetSate 
  705. WinGetSate(\^"title", ["text"] )
  706. !
  707. !TEXT=WinGetText 
  708. WinGetText(\^"title", ["text"] )
  709. !
  710. !TEXT=WinGetTitle 
  711. WinGetTitle(\^"title", ["text"] )
  712. !
  713. !TEXT=WinKill
  714. WinKill(\^"title", ["text"] )
  715. !
  716. !TEXT=WinMenuSelectItem
  717. WinMenuSelectItem(\^"title", "text", "item" [, "item"] [, "item"] [, "item"] [, "item"] [, "item"] [, "item"] )
  718. !
  719. !TEXT=WinMinimizeAll
  720. WinMinimizeAll()
  721. !
  722. !TEXT=WinMinimizeAllUndo
  723. WinMinimizeAllUndo()
  724. !
  725. !TEXT=WinMove
  726. WinMove(\^"title", "text", x, y, [width], [height] )
  727. !
  728. !TEXT=WinSearchChildren (Option)
  729. AutoItSetOption("WinSearchChildren", \^param)
  730. !
  731. !TEXT=WinSetOnTop
  732. WinSetOnTop(\^"title", "text", flag)
  733. !
  734. !TEXT=WinSetTitle
  735. WinSetTitle(\^"title", "text", "newtitle" )
  736. !
  737. !TEXT=WinShow
  738. WinShow(\^"title", "text", flag)
  739. !
  740. !TEXT=WinTitleMatchMode (Option)
  741. AutoItSetOption("WinTitleMatchMode", \^param)
  742. !
  743. !TEXT=WinWait 
  744. WinWait(\^"title", ["text"], [timeout] )
  745. !
  746. !TEXT=WinWaitActive 
  747. WinWaitActive(\^"title", ["text"], [timeout] )
  748. !
  749. !TEXT=WinWaitClose 
  750. WinWaitClose(\^"title", ["text"], [timeout] )
  751. !
  752. !TEXT=WinWaitDelay (Option)
  753. AutoItSetOption("WinWaitDelay", \^param)
  754. !
  755. !TEXT=WinWaitNotActive 
  756. WinWaitNotActive(\^"title", ["text"], [timeout] )
  757. !
  758.  
  759. !TEXT=@error
  760. @error
  761. !
  762. !TEXT=@SEC
  763. @SEC
  764. !
  765. !TEXT=@MIN
  766. @MIN
  767. !
  768. !TEXT=@HOUR
  769. @HOUR
  770. !
  771. !TEXT=@MDAY
  772. @MDAY
  773. !
  774. !TEXT=@MON
  775. @MON
  776. !
  777. !TEXT=@YEAR
  778. @YEAR
  779. !
  780. !TEXT=@WDAY
  781. @WDAY
  782. !
  783. !TEXT=@YDAY
  784. @YDAY
  785. !
  786. !TEXT=@ProgramFilesDir
  787. @ProgramFilesDir
  788. !
  789. !TEXT=@CommonFilesDir
  790. @CommonFilesDir
  791. !
  792. !TEXT=@MyDocumentsDir
  793. @MyDocumentsDir
  794. !
  795. !TEXT=@AppDataCommonDir
  796. @AppDataCommonDir
  797. !
  798. !TEXT=@DesktopCommonDir
  799. @DesktopCommonDir
  800. !
  801. !TEXT=@DocumentsCommonDir
  802. @DocumentsCommonDir
  803. !
  804. !TEXT=@FavoritesCommonDir
  805. @FavoritesCommonDir
  806. !
  807. !TEXT=@ProgramsCommonDir
  808. @ProgramsCommonDir
  809. !
  810. !TEXT=@StartMenuCommonDir
  811. @StartMenuCommonDir
  812. !
  813. !TEXT=@StartupCommonDir
  814. @StartupCommonDir
  815. !
  816. !TEXT=@AppDataDir
  817. @AppDataDir
  818. !
  819. !TEXT=@DesktopDir
  820. @DesktopDir
  821. !
  822. !TEXT=@FavoritesDir
  823. @FavoritesDir
  824. !
  825. !TEXT=@ProgramsDir
  826. @ProgramsDir
  827. !
  828. !TEXT=@StartMenuDir
  829. @StartMenuDir
  830. !
  831. !TEXT=@StartupDir
  832. @StartupDir
  833. !
  834. !TEXT=@StartupDir
  835. @StartupDir
  836. !
  837. !TEXT=@UserProfileDir
  838. @UserProfileDir
  839. !
  840. !TEXT=@HomeDrive
  841. @HomeDrive
  842. !
  843. !TEXT=@HomePath
  844. @HomePath
  845. !
  846. !TEXT=@HomeShare
  847. @HomeShare
  848. !
  849. !TEXT=@LogonDNSDomain
  850. @LogonDNSDomain
  851. !
  852. !TEXT=@LogonDomain
  853. @LogonDomain
  854. !
  855. !TEXT=@LogonServer
  856. @LogonServer
  857. !
  858. !TEXT=@Computername
  859. @Computername
  860. !
  861. !TEXT=@Username
  862. @Username
  863. !
  864. !TEXT=@TempDir
  865. @TempDir
  866. !
  867. !TEXT=@WindowsDir
  868. @WindowsDir
  869. !
  870. !TEXT=@SystemDir
  871. @SystemDir
  872. !
  873. !TEXT=@SW_HIDE
  874. @SW_HIDE
  875. !
  876. !TEXT=@SW_MINIMIZE
  877. @SW_MINIMIZE
  878. !
  879. !TEXT=@SW_MAXIMIZE
  880. @SW_MAXIMIZE
  881. !
  882. !TEXT=@SW_RESTORE
  883. @SW_RESTORE
  884. !
  885. !TEXT=@SW_SHOW
  886. @SW_SHOW
  887. !
  888. !TEXT=@ScriptFullPath
  889. @ScriptFullPath
  890. !
  891. !TEXT=@ScriptName
  892. @ScriptName
  893. !
  894. !TEXT=@ScriptDir
  895. @ScriptDir
  896. !
  897. !TEXT=@WorkingDir
  898. @WorkingDir
  899. !
  900. !TEXT=@OSType
  901. @OSType
  902. !
  903. !TEXT=@OSVersion
  904. @OSVersion
  905. !
  906. !TEXT=@OSBuild
  907. @OSBuild
  908. !
  909. !TEXT=@OSServicePack
  910. @OSServicePack
  911. !
  912. !TEXT=@AutoItVersion
  913. @AutoItVersion
  914. !
  915. !TEXT=@IPAddress1
  916. @IPAddress1
  917. !
  918. !TEXT=@IPAddress2
  919. @IPAddress2
  920. !
  921. !TEXT=@IPAddress3
  922. @IPAddress3
  923. !
  924. !TEXT=@IPAddress4
  925. @IPAddress4
  926. !
  927. !TEXT=@CR
  928. @CR
  929. !
  930. !TEXT=@LF
  931. @LF
  932. !
  933. !TEXT=@CRLF
  934. @CRLF
  935. !
  936. !TEXT=@DesktopWidth
  937. @DesktopWidth
  938. !
  939. !TEXT=@DesktopHeight
  940. @DesktopHeight
  941. !
  942. !TEXT=CmdLine[0]
  943. CmdLine[0]
  944. !
  945.