[Flashcoders] SmartyPants IOC

2009-05-04 Thread Jiri
Hello, is there anybody on this list that has been using the SmartyPants, a dependency injection framework. I am curious to hear their experience with it. The documentation is _very_ limited, unfortunatly, and I am having a hard time getting my head around it.

Re: [Flashcoders] Regex

2009-05-04 Thread Anthony Pace
Not quite what I was looking for, but thank you for the link. I know it is based on the ECMA-262 spec, taking care of the spec question; yet, I really want to know what this implementation can and can't do well. Is there a break down, stress test comparison, on what is faster to do on your

RE: [Flashcoders] Regex

2009-05-04 Thread Merrill, Jason
I really want to know what this implementation can and can't do well. I'd use Grant's RegExr tool to try it out. I think there are so many possibilities, might be hard for any one person to document capabilities to the extent you're looking for. Jason Merrill Bank of America Global

[Flashcoders] AS2 known? bug with _yscale property when class extends MovieClip

2009-05-04 Thread Andrew Sinning
I'm using AS2 and I have a symbol linked to a class that extends MovieClip. There's a place in the class where the mc gets scaled. Because it extends MovieClip, I didn't bother to use this, as in this._yscale = 90. I simply typed _yscale = 90. Curiously, without the this, the command

Re: [Flashcoders] AS2 known? bug with _yscale property when class extends MovieClip

2009-05-04 Thread Jordan L. Chilcott
Are you dealing with anything that may represent a scoping issue? Where are you setting your _yscale? jord Andrew Sinning wrote: I'm using AS2 and I have a symbol linked to a class that extends MovieClip. There's a place in the class where the mc gets scaled. Because it extends MovieClip,

[Flashcoders] CSS and flash

2009-05-04 Thread Karl DeSaulniers
Hello List, I am trying to embark on a journey with Flash and CSS. (Actually just trying to please the bosses) I think I was told that Flash has its own kind of CSS? Is that right? Or do you incorporate regular HTML CSS with flash? How do you apply the CSS to say a textBox or and image inside

Re: [Flashcoders] CSS and flash

2009-05-04 Thread Nate Beck
http://tinyurl.com/cwun3b The Actionscript.org and Kirupa results should be able to get you started. On Mon, May 4, 2009 at 2:33 PM, Karl DeSaulniers k...@designdrumm.comwrote: Hello List, I am trying to embark on a journey with Flash and CSS. (Actually just trying to please the bosses) I

Re: [Flashcoders] CSS and flash

2009-05-04 Thread Paul Andrews
Google is your friend. Here's what googling flash and css got me: http://www.republicofcode.com/tutorials/flash/css/ Paul - Original Message - From: Karl DeSaulniers k...@designdrumm.com To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Monday, May 04, 2009 10:33 PM

Re: [Flashcoders] CSS and flash

2009-05-04 Thread Karl DeSaulniers
TGFG ;) Thanks for your responses, Karl DeSaulniers Design Drumm http://designdrumm.com On May 4, 2009, at 4:59 PM, Paul Andrews wrote: Google is your friend. Here's what googling flash and css got me: http:// www.republicofcode.com/tutorials/flash/css/ Paul - Original Message -

Re: [Flashcoders] AS2 known? bug with _yscale property when class extends MovieClip

2009-05-04 Thread Andrew Sinning
I'm setting the value inside of the class which extends MovieClip. It is really bizarre that it would change the yscale of _root. This mc is buried 5 clips deep inside of a swf that is in turn imported into the _root. Jordan L. Chilcott wrote: Are you dealing with anything that may

[Flashcoders] Looping flv streams seamlessly

2009-05-04 Thread Stephen Matthews
I am having trouble looping streaming flvs. I am using a Video Object with a Netstream Flvs flush their buffer when they fire their stop event so that any loop has to buffer when you use this even to seek(0). I just need to know the correct approach on this - although if you have any

Re: [Flashcoders] CSS and flash

2009-05-04 Thread Karl DeSaulniers
Eureka! Just what I needed. http://flash-forum.flashdevils.com/showthread.php?threadid=189981 In case anyone else needs this. Simple and straight to the point. Karl DeSaulniers Design Drumm http://designdrumm.com On May 4, 2009, at 5:18 PM, Karl DeSaulniers wrote: TGFG ;) Thanks for your

[Flashcoders] memory in avm1 movies

2009-05-04 Thread Fabio Pinatti
Hello coders, We discuss a lot of garbage collection for avm2. But the point is, for avm1 loaded inside avm2, as I don't have addEventListeners in as2, is there some possibility to release memory used, and/or is it necessary? I'm asking because I'm building a portfolio in as3, that will load

Re: [Flashcoders] Regex

2009-05-04 Thread Karl DeSaulniers
Is this what your looking for? I ran across this looking for CSS tutorials. :) http://www.visibone.com/products/bbk14-15_425.html Karl DeSaulniers Design Drumm http://designdrumm.com On May 4, 2009, at 10:14 AM, Anthony Pace wrote: Not quite what I was looking for, but thank you for the