Administrators Jon Posted November 23, 2007 Administrators Posted November 23, 2007 AutoItX needs some love. I've neglected it for quite a while and the interfaces/methods aren't up to scratch. I'm probably going to reimplement the interfaces so for those who use it please chip in with any suggestions. It will likely _not_ be backwardly compatible as some of the existing methods have really lame parameters. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
piccaso Posted November 23, 2007 Posted November 23, 2007 Might be a bit much for a suggestion but it would be nice to have the whole script engine available in autoitx. Something like execute for AU3_*GetHandle functions, which both dont return a value in c api, i'd sugesst returning a handle or format the string to be reusable ([HANDLE:...]) CoProc Multi Process Helper libraryTrashBin.nfshost.com store your AutoIt related files here!AutoIt User Map
zfisherdrums Posted November 23, 2007 Posted November 23, 2007 Hello Jon, I saw this beggar on the side of the road today. He was holding a sign saying, "Need a WinList method". It looked like he had been standing out there for awhile; his hands were all gnarled and arthritic from writing all those EnumWindows callbacks. Poor guy. I threw him my two cents. Also, would it be safe to assume that the interface reimplementation will provide a way to reference controls and windows using the bracket syntax? Zach... Identify .NET controls by their design time namesLazyReader© could have read all this for you. Unit Testing for AutoItFolder WatcherWord Doc ComparisonThis here blog...
Administrators Jon Posted November 23, 2007 Author Administrators Posted November 23, 2007 Hello Jon,I saw this beggar on the side of the road today. He was holding a sign saying, "Need a WinList method". It looked like he had been standing out there for awhile; his hands were all gnarled and arthritic from writing all those EnumWindows callbacks. Poor guy. I threw him my two cents.Also, would it be safe to assume that the interface reimplementation will provide a way to reference controls and windows using the bracket syntax?Zach...LOL The current version actually works with the same syntax as the full version of AutoIt. It's just not documented really. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
Confuzzled Posted November 24, 2007 Posted November 24, 2007 Hello Jon, I saw this beggar on the side of the road today. He was holding a sign saying, "Need a WinList method". It looked like he had been standing out there for awhile; his hands were all gnarled and arthritic from writing all those EnumWindows callbacks. Poor guy. I threw him my two cents. Also, would it be safe to assume that the interface reimplementation will provide a way to reference controls and windows using the bracket syntax? Zach...Was it this fellow?
zfisherdrums Posted November 24, 2007 Posted November 24, 2007 (edited) @Jon: All jesting aside, I believe a WinList method would be great. Thanks for the heads up on the syntax.@Confuzzled: That looks like the guy across the street. He was trying to write a batch file wrapper for AutoIt.*Zach...* I will stop hijacking this thread now. Edited November 24, 2007 by zfisherdrums Identify .NET controls by their design time namesLazyReader© could have read all this for you. Unit Testing for AutoItFolder WatcherWord Doc ComparisonThis here blog...
wccppp Posted December 1, 2007 Posted December 1, 2007 AutoItX needs some love. I've neglected it for quite a while and the interfaces/methods aren't up to scratch. I'm probably going to reimplement the interfaces so for those who use it please chip in with any suggestions.It will likely _not_ be backwardly compatible as some of the existing methods have really lame parameters.Any chance to include Regular Expression support in AutoItX? Thanks!
erezlevi Posted January 16, 2008 Posted January 16, 2008 Any chance to include Regular Expression support in AutoItX? Thanks!maybe I am asking this wrong here, because I don't know AutoItX abilities, but, can I register an AuitIT script to windows so if another program will do the following: ObjCreate ("Erez.Interface") can I create this object and register it to windows, and use method within it? so again if another program will call it:like another AutoIT script:$part4="hello world"$oInter=ObjCreate ("Erez.Interface")$oInter.Initialize(0)$oInter.SendData($part4)$oInter.Terminate()can I write a script that when the other Script creates the object "Erez.Interface", I will Recieve the Initialize command and do stuff with the senddata command?
Administrators Jon Posted January 25, 2008 Author Administrators Posted January 25, 2008 For the DLL version, the use of strings for windows and controls can be annoying because it's not easy to pass proper HWNDs. eg: AU3_API long WINAPI AU3_ControlClick(const char *szTitle, const char *szText, const char *szControl, const char *szButton, long nNumClicks, long nX, long nY); Should I make WinGetHandle and ControlGetHandle the only functions to support strings and make all other functions take pure HWNDs? Or should a have an ...Ex() version of each function that takes alternative parameters? Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
golron Posted January 25, 2008 Posted January 25, 2008 Should I make WinGetHandle and ControlGetHandle the only functions to support strings and make all other functions take pure HWNDs? Or should a have an ...Ex() version of each function that takes alternative parameters?I don't think that making all the other functions take HWNDs would be that good of an idea. I'm not sure how it applies to everybody else, but for the automation that I do multiple windows are usually popping up so it is nice to do the automation in one call rather then having to call *GetHandle() for each new window. Having *Ex() versions might work, but I think it would clutter up the dll a lot.As for suggestions, the ability to automate things like sliders, treeviews, and toolbars would be very nice.
Richard Robertson Posted January 25, 2008 Posted January 25, 2008 An ...Ex() style seems to make the most sense to me.
JRSmile Posted February 13, 2008 Posted February 13, 2008 any chance that it will be able to fire events, to be fully com compatible? $a=StringSplit("547275737420796F757220546563686E6F6C75737421","") For $b=1 To UBound($a)+(-1*-1*-1)step(2^4/8);&$b+=1*2/40*µ&Asc(4) Assign("c",Eval("c")&Chr(Dec($a[$b]&$a[$b+1])));''Chr("a")&"HI" Next ;time_U&r34d,ths,U-may=get$the&c.l.u.e;b3st-regards,JRSmile; MsgBox(0x000000,"",Eval("c"));PiEs:d0nt+*b3.s4d.4ft3r.1st-try:-)
Richard Robertson Posted February 13, 2008 Posted February 13, 2008 AutoItX doesn't have any events to fire.
Melloware Posted April 18, 2008 Posted April 18, 2008 Jon, if you do decide to reimplement the DLL or even add new features I would be more than happy to create the matching Delphi wrapper to go along with the DLL. A lot of your autoITX users out there I think are Delphi users. I know there are other guys on this forum that have done a Java translation and a few other languages too. It would be cool to have them all in your distributable so developers don't have to come searching for them and know that they match the version of the DLL you are distributing. Just my two cents! I am always available too. ----------------------------------------------------------------------------------------Melloware Inchttp://www.melloware.comHome of Intelliremote, take back control of your HTPC!www.intelliremote.com-----------------------------------------------------------------------------------------
jcddcjjcd Posted June 11, 2008 Posted June 11, 2008 I would also like to see more of the features included in the dll. Thanks for your work. Regards, John.
Administrators Jon Posted August 7, 2008 Author Administrators Posted August 7, 2008 In the latest beta version I've changed everything to full unicode. For COM this won't mean any difference to anyone. For the exported DLL version all the string parameters have changed to LPWSTR rather than char. This will cause some issues. In theory, I could create ANSI versions of every function that converts ansi/unicode on the fly but it's quite a lot of work and I'm not sure it's worth it. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
jcddcjjcd Posted August 11, 2008 Posted August 11, 2008 When you release that new version I will update the C# declartions recently posted to use the new format. Regards, John.
Richard Robertson Posted August 12, 2008 Posted August 12, 2008 It's already been released. Just use the unicode function definitions.
zfisherdrums Posted August 29, 2008 Posted August 29, 2008 How about the Winlist feature?You can roll your own. http://msdn.microsoft.com/en-us/library/ms633497(VS.85).aspxhttp://www.pinvoke.net/default.aspx/user32/EnumWindows.html Identify .NET controls by their design time namesLazyReader© could have read all this for you. Unit Testing for AutoItFolder WatcherWord Doc ComparisonThis here blog...
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