Schnudl Posted April 10, 2010 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
lsakizada Posted April 10, 2010 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)!
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