Tải bản đầy đủ (.pdf) (5 trang)

Giáo Trình How To Use AutoIt A Professional Manner part 35 pps

Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (68.71 KB, 5 trang )

WinTextMatchMode

Alters the method that is used to match window text during
search operations.
1 = Complete / Slow mode (default)
2 = Quick mode
In quick mode AutoIt can usually only "see" dialog text,
button text and the captions of some controls. In the default
mode much more text can be seen (for instance the contents
of the Notepad window).
If you are having performance problems when performing
many window searches then changing to the "quick" mode
may help.
WinTitleMatchMode

Alters the method that is used to match window titles during
search operations.
1 = Match the title from the start (default)
2 = Match any substring in the title
3 = Exact title match
4 = Advanced mode, see Window Titles & Text (Advanced)

-1 to -4 = force lower case match according to other type of
match.
WinWaitDelay
Alters how long a script should briefly pause after a
successful window-related operation.
Time in milliseconds to pause (default=250).

Related
Many!


Example

; copy any you want to change ;default value is listed first

Opt("CaretCoordMode", 1) ;1=absolute, 0=relative, 2=client
Opt("ExpandEnvStrings", 0) ;0=don't expand, 1=do expand
Opt("ExpandVarStrings", 0) ;0=don't expand, 1=do expand
Opt("FtpBinaryMode", 1) ;1=binary, 0=ASCII
Opt("GUICloseOnESC", 1) ;1=ESC closes, 0=ESC won't close
Opt("GUICoordMode", 1) ;1=absolute, 0=relative, 2=cell
Opt("GUIDataSeparatorChar","|") ;"|" is the default
Opt("GUIOnEventMode", 0) ;0=disabled, 1=OnEvent mode enabled
Opt("GUIResizeMode", 0) ;0=no resizing, <1024 special resizing
Opt("GUIEventOptions",0) ;0=default, 1=just notification, 2=GuiCtrlRead tab
index
Opt("MouseClickDelay", 10) ;10 milliseconds
Opt("MouseClickDownDelay", 10) ;10 milliseconds
Opt("MouseClickDragDelay", 250) ;250 milliseconds
Opt("MouseCoordMode", 1) ;1=absolute, 0=relative, 2=client
Opt("MustDeclareVars", 0) ;0=no, 1=require pre-declare
Opt("OnExitFunc","OnAutoItExit");"OnAutoItExit" called
Opt("PixelCoordMode", 1) ;1=absolute, 0=relative, 2=client
Opt("SendAttachMode", 0) ;0=don't attach, 1=do attach
Opt("SendCapslockMode", 1) ;1=store and restore, 0=don't
Opt("SendKeyDelay", 5) ;5 milliseconds
Opt("SendKeyDownDelay", 1) ;1 millisecond
Opt("TCPTimeout",100) ;100 milliseconds
Opt("TrayAutoPause",1) ;0=no pause, 1=Pause
Opt("TrayIconDebug", 0) ;0=no info, 1=debug line info
Opt("TrayIconHide", 0) ;0=show, 1=hide tray icon

Opt("TrayMenuMode",0) ;0=append, 1=no default menu, 2=no automatic
check, 4=menuitemID not return
Opt("TrayOnEventMode",0) ;0=disable, 1=enable
Opt("WinDetectHiddenText", 0) ;0=don't detect, 1=do detect
Opt("WinSearchChildren", 1) ;0=no, 1=search children also
Opt("WinTextMatchMode", 1) ;1=complete, 2=quick
Opt("WinTitleMatchMode", 1) ;1=start, 2=subStr, 3=exact, 4=advanced, -1 to -
4=Nocase
Opt("WinWaitDelay", 250) ;250 milliseconds




Function Reference
PixelChecksum
kiểm tra một vùng điểm ảnh trên màn hình
PixelChecksum ( left, top, right, bottom [, step [,hwnd]] )
Parameters
left X1
top Y1
right X2
bottom Y2
step
bước nhảy
mặc định là 1 (ko khuyến kích các số to).
hwnd handle tới GUI muốn kiểm tra, nếu ko có thì GUI hiện tại

Return Value
trả lại số = tổng các giá trị điểm ảnh.
Remarks

A checksum only allows you to see if "something" has changed in a region - it does
not tell you exactly what has changed.

Previous versions were extremely slow, however the function is now significantly
faster. Using the step parameter is no longer recommended. The performance gain
from using a larger step is not nearly as noticeable since the function is faster all
around. Also, the larger the step, the less reliable the checksum becomes when
used to detect small changes in the region.
Related
PixelGetColor, PixelCoordMode (Option), PixelSearch
Example

; Wait until something changes in the region 0,0 to 50,50

; Get initial checksum
$checksum = PixelChecksum(0,0, 50,50)

; Wait for the region to change, the region is checked every 100ms to reduce CPU
load
While $checksum = PixelChecksum(0,0, 50, 50)
Sleep(100)
WEnd

MsgBox(0, "", "Something in the region has changed!")




Function Reference
AutoItSetOption

Changes the operation of various AutoIt functions/parameters.
AutoItSetOption ( "option" [, param] )
Parameters
option The option to change. See Remarks.
param
[optional] The value to assign to the option. The type and meaning
vary by option. See remarks below. If the param is not provided, then
the function just returns the value already assigned to the option. The
keyword Default can be used for the parameter to reset the option to
its default value.

Return Value
Returns the value of the previous setting for the option.
Remarks
You may use Opt() as an alternative to AutoItSetOption().

AutoIt will halt with an error message if the requested option is unknown. Options
are as follows:

Option

Param

CaretCoordMode
Sets the way coords are used in the caret functions, either
absolute coords or coords relative to the current active window:

0 = relative coords to the active window
1 = absolute screen coordinates (default)
2 = relative coords to the client area of the active window

ExpandEnvStrings

Changes how literal strings and % symbols are interpreted. By
default strings are treated literally, this option allows you to use
%environment% variables inside strings, e.g., "The temp
directory is: %temp%".
1 = expand environment variables (similar to AutoIt v2)
0 = do not expand environment variables (default)
Without this option the usual way would be: "The temp
directory is: " & EnvGet("temp")
ExpandVarStrings

Changes how literal strings and variable/macro ($ and @)
symbols are interpreted. By default strings are treated literally,
this option allows you to use variables and macros inside
strings, e.g., "The value of var1 is $var1$".
1 = expand variables (when in this mode and you want to use a
literal $ or @ then double it up: "This is a single dollar $$
sign".
0 = do not expand variables (default)
FtpBinaryMode
Changes how FTP files are transferred.
1 = Binary (default)
0 = ASCII
GUICloseOnESC
When ESC is pressed on a GUI the $GUI_EVENT_CLOSE
message is sent. This option toggles this behavior on and off.
1 = Send the $GUI_EVENT_CLOSE message when ESC is
pressed (default).
0 = Don't send the $GUI_EVENT_CLOSE message when ESC

is pressed.

×