advanced please help! when i change onclick to on mouseover will display error messages, "Compile eorror: Procedure declaration doest not match the description off events, or procedure having the same name" how to solve it?
the function below is running properlyon my program, but my lecturer need me to do the on mouse over not onclick, Below this function is incharge the read function, when user browsing web page it can read the links on the webpage, when user click the link. but my lecturer need on mouse over to read. so please help me. thanks! This project deadline is coming soon. or contact me at MSN messenger
[email protected]

coding:

Private Function g_onclick() As Boolean
On Error Resume Next
Dim messages As String
messages = g.parentWindow.event.srcElement.innerText
If messages <> "" Then
merlin.Speak messages
End If
End Function