Re: [Flashcoders] round number to closet value of 8

2008-12-19 Thread Jiri Heitlager
Indeed it looks very impressive. Could some explain what is does exactly? Hans Wichman wrote: very cool! On Thu, Dec 18, 2008 at 4:26 PM, Benjamin Wolsey b...@benjaminwolsey.dewrote: Am Donnerstag, den 18.12.2008, 16:13 +0100 schrieb Hans Wichman: Hi, I think you are looking for : function

Re: [Flashcoders] round number to closet value of 8

2008-12-19 Thread Hans Wichman
Hey, it cuts off the lowest 3 bits. These lowest 3 bits are 001, 010, 011 etc, so 1,2,3,4,5,6,7 But cutting off only the lowest three bits, will result in 0..7 being 0, 8..15 being 8, while you want 0..4 - 0 , 5..12 - 8, etc, so 4 is added. But Benjamin can prolly explain better hehe since it's

RE: [Flashcoders] Custom eventListener

2008-12-19 Thread Lehr, Ross (N-SGIS)
Thanks all. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Muzak Sent: Friday, December 19, 2008 12:38 AM To: Flash Coders List Subject: Re: [Flashcoders] Custom eventListener You might wanna read the

RE: [Flashcoders] Custom eventListener

2008-12-19 Thread Merrill, Jason
Maybe I am slow... or even dumb? But all those things I can do with normal events, I guess. I was simply showing you a simple example of how you would have a custom class broadcast a custom event... normally you would not use normal events like the mouse event kind for that kind of situation.

RE: [Flashcoders] Custom eventListener

2008-12-19 Thread Merrill, Jason
But all those things I can do with normal events, I guess. So my wordplay aside, given my example, you would not use a normal event for this type of thing (having a class check data states and broadcast a notification to any listening classes that a certain data state, i.e. the machine is in

Re: [Flashcoders] Custom eventListener

2008-12-19 Thread John McCormack
Re: [Flashcoders] Custom eventListener thread is an interesting topic but it has attached itself to the Re: [Flashcoders] Pixel precise thread In Mozilla's Thunderbird I sort on topic and so I miss these fascinating discussions because the threads are mangled. Does it mess up the archives when

Re: [Flashcoders] conversion avi to flv

2008-12-19 Thread Meinte van't Kruis
actually, you can encode to on2 with ffmpeg, it takes a bit of tweaking, but it does work(with the help of some other programs), here's the link(actually not sure it's legal, it depends on the on2 codec which used to be distributed):

RE: [Flashcoders] Custom eventListener

2008-12-19 Thread Lehr, Ross (N-SGIS)
Ok. I think I got it thanks. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Merrill, Jason Sent: Friday, December 19, 2008 10:01 AM To: Flash Coders List Subject: RE: [Flashcoders] Custom