1. Trang chủ
  2. » Công Nghệ Thông Tin

AutoIT Help part 114 docx

6 162 0
Tài liệu đã được kiểm tra trùng lặp

Đang tải... (xem toàn văn)

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 6
Dung lượng 25,13 KB

Các công cụ chuyển đổi và chỉnh sửa cho tài liệu này

Nội dung

WinDetectHiddenText Specifies if hidden window text can be "seen" by the window matching functions.. 0 = Do not detect hidden text default 1 = Detect hidden text WinSearchChildren Allows

Trang 1

WinDetectHiddenText

Specifies if hidden window text can be "seen" by the window matching functions

0 = Do not detect hidden text (default)

1 = Detect hidden text

WinSearchChildren

Allows the window search routines to search child windows as well as top-level windows

0 = Only search top-level windows (default)

1 = Search top-level and child windows

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

Trang 2

; 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

Trang 3

Function Reference

ControlClick

Sends a mouse click command to a given control

ControlClick ( "title", "text", controlID [, button [, clicks [, x [, y ]]]] )

Parameters

title The title of the window to access

text The text of the window to access

controlID The control to interact with See Controls

button [optional] The button to click, "left", "right", "middle", "main",

"menu", "primary", "secondary" Default is the left button

clicks [optional] The number of times to click the mouse Default is 1

x [optional] The x position to click within the control Default is center

y [optional] The y position to click within the control Default is center

Return Value

Success: Returns 1

Failure: Returns 0

Remarks

Some controls will resist clicking unless they are the active window Use the WinActivate() function to force the control's window to the top before using

ControlClick()

Trang 4

Using 2 for the number of clicks will send a double-click message to the control - this can even be used to launch programs from an explorer control!

If the user has swapped the left and right mouse buttons in the control panel, then the behaviour of the buttons is different "Left" and "right" always click those buttons, whether the buttons are swapped or not The "primary" or "main" button will be the main click, whether or not the buttons are swapped The "secondary" or

"menu" buttons will usually bring up the context menu, whether the buttons are swapped or not

Related

ControlCommand, MouseClick, WinActivate

Example

ControlClick("Untitled -", "", "MDIClient1")

Function Reference

Trang 5

ControlCommand

Sends a command to a control

ControlCommand ( "title", "text", controlID, "command" [, "option"] )

Parameters

title The title of the window to access

text The text of the window to access

controlID The control to interact with See Controls

command The command to send to the control

option [optional] Additional parameter required by some commands

Return Value

Depends on command as table below shows In case of an error (such as an invalid command or window/control), @error=1

Command, Option Return Value

"IsVisible", "" Returns 1 if Control is visible, 0 otherwise

"IsEnabled", "" Returns 1 if Control is enabled, 0 otherwise

"ShowDropDown", "" Drops a ComboBox

"HideDropDown", "" Undrops a ComboBox

"AddString", 'string' Adds a string to the end in a ListBox or

ComboBox

"DelString", occurrence Deletes a string according to occurrence in a

ListBox or ComboBox

"FindString", 'string' Returns occurrence ref of the exact string in a

ListBox or ComboBox

"SetCurrentSelection",

occurrence

Sets selection to occurrence ref in a ListBox or ComboBox

"SelectString", 'string' Sets selection according to string in a ListBox or

ComboBox

Ngày đăng: 02/07/2014, 17:21

TỪ KHÓA LIÊN QUAN

TÀI LIỆU CÙNG NGƯỜI DÙNG

TÀI LIỆU LIÊN QUAN