Hi Guys,
I have a very complex IE page with lots of Java and Iframes. I need to be able to look for a change in one <input> field. So what i have done is to identify the field and hook an event listener with ObjEvent($title, "_Evt_") and then i use :
Func _Evt_OnChange()
Local $o_object = @COM_EventObj
ConsoleWrite( "Change" & $o_object.value &@CRLF)
_FileWriteLine($MainLog, "Change:" & _NOW())
TitleCheck($o_object.value)
EndFunc