用koda生成的窗口怎么在AU3里用啊?请各位帮忙看看:
#include <ButtonConstants.au3>#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 347, 130, 512, 399)
$Label1 = GUICtrlCreateLabel("Label1", 16, 33, 36, 17)
$Input1 = GUICtrlCreateInput("Input1", 64, 29, 257, 21)
$Button1 = GUICtrlCreateButton("Button1", 144, 80, 81, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
我现在是想让点一下$Button1 时执行代码,但是把这个代码直接放AU3里不能运行,提示 while error 这代码本身就不全哦
http://www.autoitx.com/Doc/html/functions/guigetmsg.htm 用koda生成窗口, 当你想切换到Scite编辑器编辑代码, 可以按 F10 1.代码不全,Switch没有使用EndSwitch闭合,While没有使用WEnd闭合
2.koda纯是一画图的,响应代码要自己在SciTe里去加。
如果想让它响应$button1
应该是
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
;响应代码
EndSwitch
WEnd koda里面按 F9 ,有复制代码按钮。 大不了复制,粘贴即可啊!!我就是这么干的
页:
[1]