Klaatu Posted August 15, 2006 Share Posted August 15, 2006 Yeah, seems like this program is no longer in development, and all download links no longer work, though the page is still there describing the app. Too bad, too; this would have been a nice addition to AutoIt. Oh well. My Projects:DebugIt - Debug your AutoIt scripts with DebugIt! Link to comment Share on other sites More sharing options...
piccaso Posted August 15, 2006 Share Posted August 15, 2006 it worked a few days ago... and i could bet it was version 0.7 mybe Stumpii mixed something up after an update... CoProc Multi Process Helper libraryTrashBin.nfshost.com store your AutoIt related files here!AutoIt User Map Link to comment Share on other sites More sharing options...
Orks236 Posted August 16, 2006 Share Posted August 16, 2006 The version on the website updated from .7 to .8, but the download link dosnt work. Link to comment Share on other sites More sharing options...
Stumpii Posted October 13, 2006 Author Share Posted October 13, 2006 (edited) The version on the website updated from .7 to .8, but the download link dosnt work.v0.7 is the latest. I may have accidentally put v0.8 (in dev) up and taken it down! All the links appear to be working ok. I will take a look and see if I can increase the frequency of releases. At the very least, I can roll everything up into one install file now. Edited October 13, 2006 by Stumpii Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
ChiDragon Posted October 26, 2006 Share Posted October 26, 2006 (edited) I get this error when I try to open any script including the Test one:Error -2147024770. In routine 'Class_Initialize'. Automation errorThe specified module could not be found.The window title is AutoIt Debugger Wrapper. I noticed someone earlier in this thread had a similar problem that he fixed by installing the GUI package, but I already did that. Any idea what's going on? Edited October 26, 2006 by ChiDragon Link to comment Share on other sites More sharing options...
Stumpii Posted October 26, 2006 Author Share Posted October 26, 2006 I get this error when I try to open any script including the Test one:The window title is AutoIt Debugger Wrapper. I noticed someone earlier in this thread had a similar problem that he fixed by installing the GUI package, but I already did that. Any idea what's going on?The wrapper is installed as part of the main package, not the GUI package. Try uninstalling the main package and installing again. Do you have admin priviledges on the computer, or is it locked down by IT etc? Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
ChiDragon Posted October 26, 2006 Share Posted October 26, 2006 I tried uninstalling and reinstalling them both multiple times and in different orders. I see the Wrapper DLL in the directory, and I am admin. Link to comment Share on other sites More sharing options...
Stumpii Posted October 27, 2006 Author Share Posted October 27, 2006 I tried uninstalling and reinstalling them both multiple times and in different orders. I see the Wrapper DLL in the directory, and I am admin.A silly question, but you do have .Net v2 installed don't you? The 'Class_Initialize' routine just creates an instance of the debugger GUI. It would only give an error if it was not registered correctly. Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
ChiDragon Posted October 27, 2006 Share Posted October 27, 2006 Yep, .NET Framework 2.0 shows up in Add/Remove Programs and other .NET programs run fine if I'm not mistaken (I can't think of one I've got installed to test ATM). Link to comment Share on other sites More sharing options...
JoeCool Posted November 1, 2006 Share Posted November 1, 2006 (edited) Hi ! I got an error with that script (other few scripts I tried work ok) Im running the last beta. $i = 999 $wlst = winList( "My Documents" ) $i = 666 msgbox(0,"s", $wlst[0][0]) It crashed when transferring $wlst so winlist found few windows $wlst[0][0] = 2 the Autoit Error popup said Line 128(File " ... _AutoIt Debugger Incude.au3) $oDebugWrapper.SendVariable($Variable & "[" & $iDimXIndex &"][" &$iDimYIndex &"]", ...... ... ^ERROR Error : The requested action with this object has failed . Edited November 1, 2006 by JoeCool Link to comment Share on other sites More sharing options...
Stumpii Posted November 1, 2006 Author Share Posted November 1, 2006 Hi ! I got an error with that script (other few scripts I tried work ok) Im running the last beta. $i = 999 $wlst = winList( "My Documents" ) $i = 666 msgbox(0,"s", $wlst[0][0]) It crashed when transferring $wlst so winlist found few windows $wlst[0][0] = 2 the Autoit Error popup said Line 128(File " ... _AutoIt Debugger Incude.au3) $oDebugWrapper.SendVariable($Variable & "[" & $iDimXIndex &"][" &$iDimYIndex &"]", ...... ... ^ERROR Error : The requested action with this object has failed . It is because it is trying to send HWnd values in an array which is not being handled very well. I can see a work around, but it will take me a little time to implement it. Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
JoeCool Posted November 2, 2006 Share Posted November 2, 2006 It is because it is trying to send HWnd values in an array which is not being handled very well. I can see a work around, but it will take me a little time to implement it.:-)Hi sorry for that !If it can take sometime ( days weeks ) can it be possible to offer a way to not debugging a line or a variable.We will still be able to trace everything else but we will not update variable for that line.Maybe somethink like$i = 1#$whnd = winlist( )$i +=1Where # could a special caracter wichh your interpreter will just execute the line without updating that variable...:-) Link to comment Share on other sites More sharing options...
Stumpii Posted November 2, 2006 Author Share Posted November 2, 2006 :-)Hi sorry for that !If it can take sometime ( days weeks ) can it be possible to offer a way to not debugging a line or a variable.We will still be able to trace everything else but we will not update variable for that line.Maybe somethink like$i = 1#$whnd = winlist( )$i +=1Where # could a special caracter wichh your interpreter will just execute the line without updating that variable...:-)I will try and get a new version up tonight. I have the fix in place, but need to make the distribution package etc. Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
Stumpii Posted November 3, 2006 Author Share Posted November 3, 2006 (edited) I will try and get a new version up tonight. I have the fix in place, but need to make the distribution package etc. I have decided to not release a new version as I have other changes in the works. I have attached the file au3 file that had the problem. It should be copied over the top of the existing one. The default location for the file is 'C:\Program Files\AutoIt3\AutoIt Debugger'. Note that if you have not seen the problem identified by JoeCool, you do not need the new file. _AutoIt_Debugger_Include.au3 Edited November 3, 2006 by Stumpii Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
JoeCool Posted November 3, 2006 Share Posted November 3, 2006 I have decided to not release a new version as I have other changes in the works. I have attached the file au3 file that had the problem. It should be copied over the top of the existing one. The default location for the file is 'C:\Program Files\AutoIt3\AutoIt Debugger'. Note that if you have not seen the problem identified by JoeCool, you do not need the new file. _AutoIt_Debugger_Include.au3 Hey ! Thanks alot ! :-) Link to comment Share on other sites More sharing options...
Stumpii Posted November 6, 2006 Author Share Posted November 6, 2006 Yep, .NET Framework 2.0 shows up in Add/Remove Programs and other .NET programs run fine if I'm not mistaken (I can't think of one I've got installed to test ATM).Sorry, I not know what to tell you. It appears that the GUI object is not registering properly. Unfortunately I do not know of a manual way to do it as the setup package sets a bunch of registry stuff as well as registering the control. Its not as easy as with regsvr32 for ActiveX controls. Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
Stumpii Posted November 6, 2006 Author Share Posted November 6, 2006 The debugger assumes you have a beta folder for your autoit3.exe, I just extract the beta files over the stable ones instead of making a new folderEDIT: it would also be nice if it didnt auto exit when script is finishedThe debugger only exists once you click the OK to cancel button. The debugger GUI is still active until that time, so you can check the variables after the program has finished. The message is from the debug script, not the GUI. Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
Stumpii Posted November 10, 2006 Author Share Posted November 10, 2006 (edited) I have placed a new version (v0.8.0) of the AutoIt Debugger on my site (refer to post #1). New features include: 1. Skipping of comments and blank lines. 2. Single installer (replace the previous two install packages). 3. Trace window. If you have an old version installed, please uninstall both programs that formed the previous versions. EDIT: Added program version. Edited November 10, 2006 by Stumpii Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
Zedna Posted November 11, 2006 Share Posted November 11, 2006 I have placed a new version (v0.8.0) of the AutoIt Debugger on my site (refer to post #1).Looks very impressive!! Thanks Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
Stumpii Posted November 11, 2006 Author Share Posted November 11, 2006 Here is how to add a menu item to debug a script from within SciTE. Add the following after the existing file menu definitions in the 'au3.properties' file in SciTE installation folder. Replace the '35' with whatever the next available number is. # 35 Stumpii's Graphical Debugger command.35.*.au3=$(autoit3dir)\AutoIt Debugger\AutoIt Debugger.exe "$(FilePath)" command.name.35.$(file.patterns.au3)=Graphical Debugger Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now