Hi
I am trying to use IE.au3 in my scripts

. Ok, i want to go to video on youtube and then i pres a HotKey (F2) and script would automatic go to comment textarea, write "What's name of song?" and submit comment by pressing "Post". I think that i edit and use this:
Code:
#include <IE.au3> $oIE = _IECreate ("http://www.google.com")
$oForm = _IEFormGetObjByName ($oIE, "f")
$oQuery = _IEFormElementGetObjByName ($oForm, "q") _IEFormElementSetValue ($oQuery, "AutoIt IE.au3")
_IEFormSubmit ($oForm)
2. Hmm how to make bot which click "Like" too. I was searchinf for info by FireBug but i dont understand too much(info about textarea[comment] nad button Like)
Can someone change this script for me? Thanks.