Schnudl Posted April 10, 2010 Share Posted April 10, 2010 Hi guys,I coded already some scripts with AutoIt ages ago, but I never used the "AutoIt Recorder".Ok, here is my problem. I have a *.chm Help file, and I want to export all Keywords to an Editor (Notepad, UltraEdit, for example).Any ideas, how to achieve that quick & simple?many thx for any help.Kind regardsSchnudl Link to comment Share on other sites More sharing options...
lsakizada Posted April 10, 2010 Share Posted April 10, 2010 you can try to implement the following procedure. but I am not sure the procedure be able to manipulate external control with this procedure. 1)First get the handle of the listbox via Autoit info. (ClassnameNN and internal id). example: $LV_handle = ControlGetHandle("[CLASS:hh_kwd_vlist]", "", "Internal ID") 2) Activate the .chm file 3) Set focus on the listview 4) get count of items: _GUICtrlListView_GetItemCount($hWnd) 5) get the text by looping to the end of the list. _GUICtrlListView_GetItemText($hWnd, $iIndex, 0) Be Green Now or Never (BGNN)! Link to comment Share on other sites More sharing options...
Schnudl Posted April 11, 2010 Author Share Posted April 11, 2010 Thanks for your help, I will try that thx 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