Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-23 Thread iiley
Good analyzing!!! Francis, i think you can change EventBroadcaster to use for(var i in array) to make a new test demo, then, we can test again, if the new result views that EventBroadcaster runs as slow as EventDispatcher on Mac, then, it will be clear? hmmm... 2007/3/22, Brian Williams

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-22 Thread Cedric Muller
interestingly, NO single FLASHCODER can say what it is about... meaning, we all lack of understanding of our environnement :P have a nice day all of you who doesn't understand what is going on with the EventDispatcher class ... a true study case this one ... a true! Cedric

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-22 Thread Tilmann Grüll
hi francis, here my result on a DELL dimension AMD64 X2 Dual Core 3800+ 2 GHz, 1 GB RAM: EventBroadcaster: 3563 EventDispatcher: 2210 WIN 9,0,28,0 best, til Francis Bourre schrieb: Hello list ! I noticed something weird about EventDispatcher execution speed in my mac player.

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-22 Thread Brian Williams
Someone already mentioned what it is - the for in loop vs the straight for loop. for (var i in array) ends up pushing all the keys of the array on the stack, and then popping those off. for (var i =0; i array.length; i++) doesn't. The test attaches 500 listeners to each dispatcher, so when you

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-22 Thread nelson ramirez
EventBroadcaster: 5036 EventDispatcher: 16257 mac 9,0,28,0 On 3/22/07, Tilmann Grüll [EMAIL PROTECTED] wrote: hi francis, here my result on a DELL dimension AMD64 X2 Dual Core 3800+ 2 GHz, 1 GB RAM: EventBroadcaster: 3563 EventDispatcher: 2210 WIN 9,0,28,0 best, til Francis Bourre

RE: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread Jason li
@chattyfig.figleaf.com Subject: Re: [Flashcoders] Help: test EventDispatcher speed please the results in the IE is faster than at FF on my PC: IE: EventBroadcaster: 3906 EventDispatcher: 2615 WIN 9,0,28,0 FF: EventBroadcaster: 4232 EventDispatcher: 3958 WIN 9,0,28,0 sorry but i dont have a mac to compare

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread Francis Bourre
hello! As I know, I didn't ask ppl to test an application or a site I made. That's a test that to enlight the fact that EventDispatcher behaves weird on mac player. I think ppl should be interested by these results mac vs pc/linux, don't you think ? :) francis Le 21 mars 07 à 15:15,

RE: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread Merrill, Jason
I think ppl should be interested by these results mac vs pc/linux, don't you think ? :) I know what you're saying but as I see it, it is a site test, Help: test EventDispatcher speed please. You're askng for a test, sending them to your site. Regardless, I think *maybe* maybe on a summary

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread Geoff Stearns
I think most people should be very interested in these results, even if they don't know it yet. On Mar 21, 2007, at 11:14 AM, Francis Bourre wrote: hello! As I know, I didn't ask ppl to test an application or a site I made. That's a test that to enlight the fact that EventDispatcher

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread gilles
Yes, it intereting to get the bug out. Gilles Le 21-mars-07 à 16:14, Francis Bourre a écrit : hello! As I know, I didn't ask ppl to test an application or a site I made. That's a test that to enlight the fact that EventDispatcher behaves weird on mac player. I think ppl should be interested

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread Muzak
PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 21, 2007 4:14 PM Subject: Re: [Flashcoders] Help: test EventDispatcher speed please hello! As I know, I didn't ask ppl to test an application or a site I made. That's a test that to enlight the fact that EventDispatcher behaves

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread Muzak
Part from the fact it got posted to about every single mailing list?? - Original Message - From: Cedric Muller [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 21, 2007 4:50 PM Subject: Re: [Flashcoders] Help: test EventDispatcher speed please Hello! why

RE: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread Holth, Daniel C.
] On Behalf Of Merrill, Jason Sent: Wednesday, March 21, 2007 11:10 AM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Help: test EventDispatcher speed please I think ppl should be interested by these results mac vs pc/linux, don't you think ? :) I know what you're saying but as I see

[Flashcoders] Help: test EventDispatcher speed please

2007-03-20 Thread Francis Bourre
Hello list ! I noticed something weird about EventDispatcher execution speed in my mac player. EventDispatcher.dispatchEvent execution is slow compared to a custom dispatcher implementation (named EventBroadcaster). On Mac, EventDispatcher is slow: EventBroadcaster: 2925 EventDispatcher:

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-20 Thread Ryan
EventBroadcaster: 2875 EventDispatcher: 2294 WIN 9,0,28,0 Francis Bourre wrote: Hello list ! I noticed something weird about EventDispatcher execution speed in my mac player. EventDispatcher.dispatchEvent execution is slow compared to a custom dispatcher implementation (named

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-20 Thread Pedro Taranto
the results in the IE is faster than at FF on my PC: IE: EventBroadcaster: 3906 EventDispatcher: 2615 WIN 9,0,28,0 FF: EventBroadcaster: 4232 EventDispatcher: 3958 WIN 9,0,28,0 sorry but i dont have a mac to compare --Pedro Taranto Francis Bourre escreveu: Hello list ! I noticed

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-20 Thread Latcho
EventBroadcaster: 3924 EventDispatcher: 2676 WIN/ FF / flash 9 Francis Bourre wrote: Hello list ! I noticed something weird about EventDispatcher execution speed in my mac player. EventDispatcher.dispatchEvent execution is slow compared to a custom dispatcher implementation (named

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-20 Thread Alain Rousseau
Definitely slower on a Mac FF : EventBroadcaster: 5021 EventDispatcher: 16148 Safari : EventBroadcaster: 5845 EventDispatcher: 17080 Opera 8.5: EventBroadcaster: 5469 EventDispatcher: 17635 Player MAC, 9,0,28,0 no clue as to why tho ... Good luck ! Francis Bourre wrote: Hello list ! I