本帖最后由 17911 于 2009-5-24 13:48 编辑
请问如何编写使下面脚本可以只编辑选中部分文字设置字体,比如在编辑框中输入"欢迎学习AU3编程",只将其中"AU3编程"这几个字符通过字体设置变为为红色,而“欢迎学习”这4个字的字体保持不变,请高手帮助完善一下代码
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Misc.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("窗体1", 413, 298, 302, 218)
$Edit1 = GUICtrlCreateEdit("", 64, 8, 305, 217)
GUICtrlSetData(-1, "欢迎学习AU3编程")
$Button1 = GUICtrlCreateButton("字体设置", 48, 256, 113, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
$font = _ChooseFont("Arial", 16)
If @error Then ContinueLoop
GUICtrlSetFont($Edit1, $font[3], $font[4], $font[1], $font[2])
GUICtrlSetColor($Edit1, $font[7])
EndSwitch
WEnd |