ddk`notlogdin wrote:
I see. I've been reading the
tutorial about the basic webpage controls with COM and with searching I've also found
iWebBrowser2 Learner. The iWebBrowser2 Learner seems to be pretty, I was impressed how detailed information I got about the values and the controls (name, id & stuff..).
If I've understood right, I could make highly automated softwares for webapplications, like client-based facebook (

) or maybe a bot for browserbased game, could I?
Well, maybe some practising first. May I request a sample script which could messagebox current IE windows current controls details via hotkey. Just like the iWebBrowser2 Learner does, but into GUI. I guess I could make it myself, reading from iWebBrowser2 Learner's source, but it's pretty hard to understand (as far as I've read it..).
Please, don't understand me wrong. I hope I dont bother you guys, too much and I post to right thread.

Hey,
I think, I just did it.. somehow

, just need help to get the very current controls value. Eh, my code:
Code:
r::
COM_CoInitialize()
pweb := GetWebBrowser()
MsgBox % COM_Invoke(pweb, "document.getElementsByTagName[input].item[3].value")
COM_Release(pweb)
COM_CoUninitialize()
Return
I know it's like 666% of copypaste, but however, just testing
