AutoIt Debugger ?

08/07/2015 19:54 mlukac89#1
Hi, is there some valid debugger for autoit script or code ?
08/07/2015 20:56 YatoDev#2
the build in debugger isn't enough?
08/07/2015 21:22 mlukac89#3
You mean on this ?

Code:
#AutoIt3Wrapper_Run_Debug_Mode = Y
#AutoIt3Wrapper_Run_Debug = On

$i = 1000
beep($i, 100)
08/07/2015 21:38 alpines#4
There is a fair good one. [Only registered and activated users can see links. Click Here To Register...]
I found this one by googling "AutoIt3 Debugger", is it that hard?
08/07/2015 23:03 mlukac89#5
Ty but i solved problem

Code:
_function1()
 _function2()  

; gui start  
#gui code here  
;=> gui end   

; replaced by  

; gui start  
#gui code here  
;=> gui end  

_function1() 
_function2()