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 / Examples / AutoItSetOption.au3 < prev    next >
Text File  |  2005-02-19  |  2KB  |  31 lines

  1. ; copy any you want to change   ;default value is listed first
  2.  
  3. Opt("CaretCoordMode", 1)        ;1=absolute, 0=relative, 2=client
  4. Opt("ColorMode", 0)             ;0=RRGGBB color, 1=BBGGRR color
  5. Opt("ExpandEnvStrings", 0)      ;0=don't expand, 1=do expand
  6. Opt("ExpandVarStrings", 0)      ;0=don't expand, 1=do expand
  7. Opt("FtpBinaryMode", 1)         ;1=binary, 0=ASCII
  8. Opt("GUICloseOnESC", 1)         ;1=ESC won't close, 0=ESC closes
  9. Opt("GUICoordMode", 1)          ;1=absolute, 0=relative, 2=cell
  10. Opt("GUIOnEventMode", 0)        ;0=disabled, 1=OnEvent mode enabled
  11. Opt("GUIResizeMode", 0)         ;0=no resizing, <1024 special resizing
  12. Opt("MouseClickDelay", 10)      ;10 milliseconds
  13. Opt("MouseClickDownDelay", 10)  ;10 milliseconds
  14. Opt("MouseClickDragDelay", 250) ;250 milliseconds
  15. Opt("MouseCoordMode", 1)        ;1=absolute, 0=relative, 2=client
  16. Opt("MustDeclareVars", 0)       ;0=no, 1=require pre-declare
  17. Opt("PixelCoordMode", 1)        ;1=absolute, 0=relative, 2=client
  18. Opt("RunErrorsFatal", 1)        ;1=fatal, 0=silent set @error
  19. Opt("SendAttachMode", 0)        ;0=don't attach, 1=do attach
  20. Opt("SendCapslockMode", 1)      ;1=store and restore, 0=don't
  21. Opt("SendKeyDelay", 5)          ;5 milliseconds
  22. Opt("SendKeyDownDelay", 1)      ;1 millisecond
  23. Opt("TrayIconDebug", 0)         ;0=no info, 1=debug line info
  24. Opt("TrayIconHide", 0)          ;0=show, 1=hide tray icon
  25. Opt("WinWaitDelay", 250)        ;250 milliseconds
  26. Opt("WinDetectHiddenText", 0)   ;0=don't detect, 1=do detect
  27. Opt("WinSearchChildren", 1)     ;0=no, 1=search children also
  28. Opt("WinTextMatchMode", 1)      ;1=complete, 2=quick
  29. Opt("WinTitleMatchMode", 1)     ;1=start, 2=subStr, 3=exact, 4=advanced
  30. Opt("WinWaitDelay", 250)        ;250 milliseconds
  31.