发提问贴您至少要有点自己的东西啊
总不能说 发个帖子:请问TX的验证码怎么解决?
这样别人怎么回答您呢?
用手?用脑?给你专制一个脚本?
请把问题简化,准确化,详细化。这样可以利于问题的解决
不懂得写输入窗口可以在论坛搜索 ‘输入 窗口’ 、‘输入‘ 、 ‘窗口 ’......之类的 然后自己学点东西,写写自己想要的脚本,遇到不知道的或者不肯定的再来发提问帖
就到这里了.......
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local $file, $btn, $msg
GUICreate(" My GUI input acceptfile", 320, 120, @DesktopWidth / 2 - 160, @DesktopHeight / 2 - 45, -1, 0x00000018); WS_EX_ACCEPTFILES
$file = GUICtrlCreateInput("", 10, 5, 300, 20)
GUICtrlSetState(-1, $GUI_DROPACCEPTED)
GUICtrlCreateInput("", 10, 35, 300, 20) ; will not accept drag&drop files
$btn = GUICtrlCreateButton("Ok", 40, 75, 60, 20)
GUISetState()
$msg = 0
While $msg <> $GUI_EVENT_CLOSE
$msg = GUIGetMsg()
Select
Case $msg = $btn
ExitLoop
EndSelect
WEnd
MsgBox(4096, "drag drop file", GUICtrlRead($file))
EndFunc
|