Re: [Flashcoders] Custom Event Question

2011-08-19 Thread John Polk
Hey, Jason: Check this out! http://www.tyz.nl/2010/03/22/temple-open-sourced/ Then if you d/l it, go to this: file:///Users/blahblahblah.../Downloads/templelibrary_2.9.1/doc/temple/ui/eventtunneling/EventTunneler.html This is an example about how to nest MultiStateButtons and how EventTunneling

Re: [Flashcoders] Custom Event Question

2011-08-16 Thread John Polk
Thanks! John From: Merrill, Jason jason.merr...@bankofamerica.com To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Monday, August 15, 2011 9:14 PM Subject: RE: [Flashcoders] Custom Event Question If you want to do bubbling with Signals, then read

Re: [Flashcoders] Custom Event Question

2011-08-15 Thread John Polk
Event Question From: John Polk j.pol...@yahoo.com To: Flash List flashcoders@chattyfig.figleaf.com Sent: Sunday, August 14, 2011 12:04 PM Subject: [Flashcoders] Custom Event Question I have figured out how to do this. It requires more than just dispatching

RE: [Flashcoders] Custom Event Question

2011-08-15 Thread Merrill, Jason
Of John Polk Sent: Monday, August 15, 2011 2:06 PM To: John Polk; Flash Coders List Subject: Re: [Flashcoders] Custom Event Question Hmmm. Why didn't anyone recommend Robert Penner's as3-signals? John From: John Polk j.pol...@yahoo.com To: John Polk j.pol...@yahoo.com

Re: [Flashcoders] Custom Event Question

2011-08-15 Thread John Polk
From: Merrill, Jason jason.merr...@bankofamerica.com To: John Polk j.pol...@yahoo.com; Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Monday, August 15, 2011 3:08 PM Subject: RE: [Flashcoders] Custom Event Question Yeah man, AS3Signals

RE: [Flashcoders] Custom Event Question

2011-08-15 Thread Merrill, Jason
Polk [mailto:j.pol...@yahoo.com] Sent: Monday, August 15, 2011 5:51 PM To: Merrill, Jason; Flash Coders List Subject: Re: [Flashcoders] Custom Event Question From: Merrill, Jason jason.merr...@bankofamerica.com To: John Polk j.pol...@yahoo.com; Flash Coders List

[Flashcoders] Custom Event Question

2011-08-14 Thread John Polk
Hi; I have this code in the class dispatching the custom event:         private function progressHandler(e:LoaderEvent):void         {             dispatchEvent(new Event(e.target.progress));         } (This is from a greensock loaderEvent.) I have this pseudo-code from the class listening

Re: [Flashcoders] Custom Event Question

2011-08-14 Thread John Polk
From: John Polk j.pol...@yahoo.com To: Flash List flashcoders@chattyfig.figleaf.com Sent: Sunday, August 14, 2011 12:04 PM Subject: [Flashcoders] Custom Event Question I have figured out how to do this. It requires more than just dispatching a custom event