Eva/Larry The code was working OK with IE. I've now changed the Javascript so that it now works correctly with Chrome (removing the reference to the <element>.all field which IE supports, but Chrome does not recognise!)
I suspect the issue is linked to handling a mousemove and click listener running on the same time on the 'map' object. Are there any known issues in this area, or has there been any changes in supported configurations whereby you can have both a "mousemove" and "click" listener on the map object, or are you allowed to create a "mousemove" and "click" listener from within a "rightclick" listener. On Chrome, I now experience the situation where the "mousemove" event is being triggered correctly, but the "click" listener is never triggered. On IE 8.0, I do find that occassionally the "click" event is triggered. Does this point to some timing issues within the API code whereby the click event is being lost? Regards Dave On Jan 25, 1:10 am, Esa <[email protected]> wrote: > I get an error 'Editor.all is undefined' > > Editor seems to be an html element: > > Editor = document.getElementById("Line Editor"); > > Editor.all is handled like an array of html elements: > > for (var i = 0; i < Editor.all.length; i++) { > var e = Editor.all[i]; > e.style.visibility = (Status ? "visible" : "hidden") > }; > > I don't think any api version change is causing the problem. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
