Hu guys, Regarding ObjEvent usage on IE (IE.au3). If I use ObjEvent(_IEGetObjById($oIE, "btn1"), "_MyBTN_", "HTMLAnchorEvents2") Func _MyBTN_onclick()     ConsoleWrite("Clicked" & @LF) Endfunc to listen for a click on a element, how can I retrieve its attributes. For example ID, outertext, or Value ? If yes, can I do ObjEvent on a body and then catch all elements clicked and parse them in a loop? This would allow me to use only one function for all the elements. Thanks