Schnudl 0 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 Share this post Link to post Share on other sites
lsakizada 0 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)! Share this post Link to post Share on other sites
Schnudl 0 Posted April 11, 2010 Thanks for your help, I will try that thx Share this post Link to post Share on other sites