|
From: Leif W <war...@us...> - 2003-09-02 02:08:52
|
I observe the same when clicking extremely fast, IE seems to miss about
every other click. I modified the example so it works with Mozilla too, for
comparison. It seems Mozilla doesn't like numeric status, takes only
string, doesn't auto-convert, and requires the window.status. I did not
observe any dropped clicks in Mozilla. Wouldn't know where to begin a
search for a solution.
function clickspeed()
{
window.status = c++ + '';
};
----- Original Message -----
From: "Raymond Irving" <xw...@ya...>
To: "DynAPI-Dev" <dyn...@li...>
Sent: Monday, September 01, 2003 6:36 PM
Subject: [Dynapi-Dev] Slow ClickSpeed
> Hello,
>
> I've noticed that IE is unable to accept x number of
> clicks per second on a div:
>
>
> <script>
> var c = 0;
> function clickspeed() {
> status=c++;
> }
> </script>
> <div
> style="width:100;height:100;background-color:yellow"
> onclick="clickspeed()"></div>
>
>
> Try clicking as fast as you can on the layer and
> you'll notice that it's not so responsive
>
> Any solutions to this?
>
>
> --
> Raymond Irving
>
>
>
> __________________________________
> Do you Yahoo!?
> Yahoo! SiteBuilder - Free, easy-to-use web site design software
> http://sitebuilder.yahoo.com
>
>
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> Dynapi-Dev mailing list
> Dyn...@li...
> http://www.mail-archive.com/dyn...@li.../
>
>
|