ywq111 发表于 2011-3-27 22:23:01

【原创汉化】Autoit Debugger(调试器)汉化版0.32【测试版】发布,(2011-3-28)

本帖最后由 ywq111 于 2013-8-6 02:32 编辑

刚才完成了汉化工作,适应于指定路径为汉化版autoit的路径,原因:原来的程序需要有Aotoit3Wrapper.exe,现在已经修改成了ACNWrapper.exe

作用:调试autoit脚本

目前还有好几个bug。。。对中文支持有问题

木时间修改呀,大家可以到官网看看是否对中文有支持。我代码功底不大好,有些地方没看懂。<br>
经查,有一繁体版本,大家可以看看:http://rchockxm.com/2012/05/30/autoit-debugger/

该繁体中文版本为AutoIt_Debugger_0.45.1 文件下载地址,放到第二楼

文件说明:
AutoIt Debugger.exe——主程序,xp用户需要安装.net 2.0,win7和vista用户应该可以直接运行
Create Debug Script.ini——配置文件(重要),需要配置好AutoIt3安装的路径

另外,原来的程序需要有Aotoit3Wrapper.exe,现在已经修改成了ACNWrapper.exe(汉化版的autoit3wrapper
的路径)——这是硬编码在程序里,没有写在配置文件中

另外,程序中还需要用到CodeWizard,CodeWizard应该放置到autoit3\Scite目录下,
路径为如下方式:autoit3\Scite\CodeWizard\CodeWizard.exe


Create Debug Script.ini配置项说明:
AutoItReleaseExecutable=..\AutoIt3\AutoIt3.exe
——表示在bin目录的上层目录,也就是autoit3和bin目录是同级别的,
也可以是写自己安装autoit的目录:
比如安装在:D:\Program Files\autoit3chs,那么这个选项应该设置为:
AutoItReleaseExecutable=D:\Program Files\autoit3chs\AutoIt3.exe
其他配置选项类似

ywq111 发表于 2011-3-27 22:24:07

本帖最后由 ywq111 于 2017-2-7 16:18 编辑

繁体版本0.4.5.1版本,在自己x64机器上打开文件时运行报错了,
大家可以试试看,不知道是否还是有问题(是湾湾修改编译的,不是我弄的): http://pan.baidu.com/share/link?shareid=758443730&uk=4196614551


autoitDebugger主程序0.3.2,2011-3-28日重新编译了一下(刚加入了SciLexerx64.dll,以便支持64位系统,编译使用的是ALLCPU,在64位系统应该可以使用——没有使用64位系统,所以没有条件测试),:
之前的0.3.2版本还不完善,对于中文的支持还没有完全解决。还有好几个bug,暂时只能供测试,因为bug的缘故,还不适合用于实际用途

程序中还需要用到CodeWizard,一楼有说明


xp用户需要先安装.net 2.0
Microsoft .NET Framework 2.0 (x86) 多国语言版
http://www.onlinedown.net/soft/38669.htm

楼上风云 发表于 2011-3-27 23:45:29

我第一个支持你,付费了

破帽遮颜 发表于 2011-3-27 23:58:45

呵呵,谢谢楼主分享这么好的资源~

破帽遮颜 发表于 2011-3-28 00:06:11

奇怪,我这里运行会很卡{:face (245):}

ywq111 发表于 2011-3-28 10:03:39

本帖最后由 ywq111 于 2011-3-28 19:17 编辑

回复 5# 破帽遮颜


    很卡吗?那直接运行原来英文版的,是否也卡?
我这里使用正常。

AutoItDebugger程序汉化版的.net源代码包,有兴趣的可以看下

xz00311 发表于 2011-3-28 11:52:19

本帖最后由 xz00311 于 2011-3-28 12:23 编辑

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("配置文件路径", 477, 280, 192, 124)
$Label1 = GUICtrlCreateLabel("AutoIt3.exe路径", 32, 28, 98, 17)
$Label2 = GUICtrlCreateLabel("beta\AutoIt3.exe路径", 32, 68, 124, 17)
$Label3 = GUICtrlCreateLabel("Include路径", 32, 108, 79, 17)
$Label4 = GUICtrlCreateLabel("beta\include路径", 32, 148, 104, 17)
$Label5 = GUICtrlCreateLabel("SciTE路径", 32, 188, 57, 17)
$Input1 = GUICtrlCreateInput("", 160, 24, 249, 21)
$Input2 = GUICtrlCreateInput("", 160, 64, 249, 21)
$Input3 = GUICtrlCreateInput("", 160, 104, 249, 21)
$Input4 = GUICtrlCreateInput("", 160, 144, 249, 21)
$Input5 = GUICtrlCreateInput("", 160, 184, 249, 21)
$Button1 = GUICtrlCreateButton("确定", 56, 232, 89, 25)
$Button2 = GUICtrlCreateButton("取消", 272, 232, 89, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        Select
                Case $nMsg = $GUI_EVENT_CLOSE
                        Exit
                Case $nMsg = $Button2
                        Exit
                Case $nMsg = $Button1
                        pe()
                        Exit
        EndSelect
WEnd

Func pe()
        IniWrite(@ScriptDir & "\Create Debug Script.ini", "Settings", "AutoItReleaseExecutable", GUICtrlRead ($Input1) & "\AutoIt3.exe")
        IniWrite(@ScriptDir & "\Create Debug Script.ini", "Settings", "AutoItBetaExecutable", GUICtrlRead ($Input2) & "\beta\AutoIt3.exe")
        IniWrite(@ScriptDir & "\Create Debug Script.ini", "Settings", "ReleaseIncludeFolder", GUICtrlRead ($Input3)& "\Include")
        IniWrite(@ScriptDir & "\Create Debug Script.ini", "Settings", "BetaIncludeFolder", GUICtrlRead ($Input4) & "\beta\include")
        IniWrite(@ScriptDir & "\Create Debug Script.ini", "Settings", "SciTEInstallFolder", GUICtrlRead ($Input5) & "\SciTE")
EndFunc看看大家要不要,只是方便一点知道大路径就好

lpxx 发表于 2011-3-28 12:00:21

谢谢,下载看看。

ywq111 发表于 2011-3-28 12:56:06

回复 7# xz00311


    这个配置路径的不错,哈哈,不过我自己是直接用记事本打开ini文件来修改的。

xdcysten 发表于 2011-3-28 13:03:41

看上去很强大,多谢分享

飘云 发表于 2011-3-28 14:52:41

好东西,这个必须顶起啊

都市浪子666 发表于 2011-3-28 14:56:40

看上很不错,下载了,谢谢楼主

baiqmdpdc 发表于 2011-3-28 15:03:01

下载了,谢谢楼主

131738 发表于 2011-3-28 17:47:53

下载测试。。。。。。。。支持

ywq111 发表于 2011-3-28 18:17:10

多谢各位支持。。。希望好用,大家可以跟帖反应一下使用中的情况。{:face (356):}
页: [1] 2 3 4 5 6 7 8 9 10
查看完整版本: 【原创汉化】Autoit Debugger(调试器)汉化版0.32【测试版】发布,(2011-3-28)