|
From: Raymond I. <xw...@ya...> - 2003-09-01 22:36:11
|
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
|
|
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.../
>
>
|
|
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.../
|
|
From: Leif W <war...@us...> - 2003-09-02 13:44:06
|
Seems to do the trick nicely.
----- Original Message -----
From: Chris Greener
To: dyn...@li...
Sent: Monday, September 01, 2003 11:03 PM
Subject: Re: [Dynapi-Dev] Slow ClickSpeed
try onmouseup instead - it seems onclick and ondblclick are competing
----- Original Message -----
From: Leif W
To: dyn...@li...
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 = 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()" ondbclick="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.../
|
|
From: Raymond I. <xw...@ya...> - 2003-09-03 21:28:08
|
Will try this one
Thanks
--
Raymond Irving
--- Chris Greener <chr...@ms...> wrote:
> try onmouseup instead - it seems onclick and
> ondblclick are competing
>
>
> ----- Original Message -----
> From: Leif W
> To: dyn...@li...
> 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 = 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()"
> ondbclick="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.../
>
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
|