Re: [Flashcoders] Reusing an Image

2011-03-29 Thread Henrik Andersson
Kevin Holleran skriver: then do something like this? Good start, but I suggest using a vector here to make the code simpler. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Reusing an Image

2011-03-29 Thread Merrill, Jason
I would agree with Henrik. Using the Vector class would be better in this case (or if Vector is confusing even just Array - Vector is just a typed array where you declare the data type and enforce it). And doesn't seem to me you need to separate hour digits from minunte digits - you're just

Re: [Flashcoders] Reusing an Image

2011-03-29 Thread Kevin Holleran
On Tue, Mar 29, 2011 at 10:23 AM, Merrill, Jason jason.merr...@bankofamerica.com wrote: I would agree with Henrik. Using the Vector class would be better in this case (or if Vector is confusing even just Array - Vector is just a typed array where you declare the data type and enforce it).