[Proto-Scripty] Re: Firefox document.getElementById

2009-02-15 Thread RobG
On Feb 12, 1:03 am, T.J. Crowder t...@crowdersoftware.com wrote: Hi, Details here:http://prototypejs.org/learn/extensions The following statement in that article is wrong: ...native objects such as HTMLElement... HTMLElement is a *host* object, not a native object. -- Rob

[Proto-Scripty] Re: Firefox document.getElementById

2009-02-15 Thread T.J. Crowder
Hi, Fair point, care to file a doc ticket on it in lighthouse? -- T.J. :-) On Feb 15, 10:51 am, RobG rg...@iinet.net.au wrote: On Feb 12, 1:03 am, T.J. Crowder t...@crowdersoftware.com wrote: Hi, Details here:http://prototypejs.org/learn/extensions The following statement in that  

[Proto-Scripty] Re: Move - OnMouseMove- Only once

2009-02-15 Thread timbob
The problem is that you are triggering a mousemove event _every_ time you move the mouse within the div, and every single time you create a Move effect. So when you leave the div there is a mouseout event and also the mousemove event from your last mouse movement. The flickering you see is the

[Proto-Scripty] Naming scheme: viewport.getScrollOffsets() vs. Element.cumlativeScrollOffset()

2009-02-15 Thread timbob
Hi, i just stumbled over viewport.getScrollOffset_s_. Is there a specific reason why this method uses the plural Offsets, since all of Element's methods use the singular Offset while returning the same tuple of values. For consistency i would prefer getScrollOffset, so i want to know if i am

[Proto-Scripty] Re: AJAX

2009-02-15 Thread Paul
Thanks for all your help with this, I really don't know what was happening but changing the javascript files for new copies has fixed it for some reason - thanks for the advice though - its certainly prompted me to go and but exception handling in. Paul On Feb 12, 3:24 pm, disccomp