|
From: Chris G. <chr...@ms...> - 2003-09-02 03:01:46
|
try onmouseup instead - it seems onclick and ondblclick are competing
----- Original Message -----=20
From: Leif W=20
To: dyn...@li...=20
Sent: Monday, September 01, 2003 7:09 PM
Subject: Re: [Dynapi-Dev] Slow ClickSpeed
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 =3D c++ + '';
};
----- Original Message -----=20
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 =3D 0;
> function clickspeed() {
> status=3Dc++;
> }
> </script>
> <div
> style=3D"width:100;height:100;background-color:yellow"
> onclick=3D"clickspeed()" ondbclick=3D"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.../
>
>
-------------------------------------------------------
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.../
|