RE: [Flashcoders] toString(aArray[i]) ?? does this work

2007-09-13 Thread Hal Leonard
] is the correct output if the object is a movie clip. This isn't the behavior I see. Any time I trace a movie clip I get the clip's name (level0.foo.bar.whatever), not the generic object results. -Andy On 9/11/07, Hal Leonard [EMAIL PROTECTED] wrote: Try toString(aArray[i]._name) instead I'm

RE: [Flashcoders] toString(aArray[i]) ?? does this work

2007-09-12 Thread Hal Leonard
Try toString(aArray[i]._name) instead I'm not 100% sure what you're storing in your array, but it sounds like you're storing movieClip objects in there, in which case the result [object Object] would be the correct output. Hal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] Jagged tweening images

2007-09-10 Thread Hal Leonard
Sometimes the tween easing helps that kind of thing... Is this transition done via code or via the timeline? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, September 10, 2007 2:46 AM To:

RE: [Flashcoders] Function call from a function

2007-09-07 Thread Hal Leonard
You have a scoping issue. It's looking for removeMC() on your target_mc.closer_mc clip. Try out some event listening and function delegating. Hal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lee Marshall Sent: Friday, September 07, 2007 7:48 AM To:

RE: [Flashcoders] caching loaded swfs and jpegs

2007-09-07 Thread Hal Leonard
Andrew - There's a cachebuster class put out by communityMX, but it basically just encapsulates the random number. Some people do a random number based on the date and time, but it all equates to roughly the same thing. Hal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] Function call from a function

2007-09-07 Thread Hal Leonard
target_mc.closer_mc.onRelease = function() { Delegate.create(this, getPopHolder); Should be something more like this. target_mc.closer_mc.addEventListener(onRelease, Delegate.create(this, getPopHolder)); You might be new, but at least you're declaring all your

RE: [Flashcoders] Re: Drawing Advanced Shape

2007-09-07 Thread Hal Leonard
You'll probably have to use the lineTo function in order to draw a compound shape like that. Hal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of macromedia flash Sent: Friday, September 07, 2007 11:11 AM To: flashcoders@chattyfig.figleaf.com Subject:

RE: [Flashcoders] Function call from a function

2007-09-07 Thread Hal Leonard
Jason - Is there any reason for not using the event Listener? Just curious, is all. Hal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Friday, September 07, 2007 12:18 PM To: flashcoders@chattyfig.figleaf.com Subject: RE:

RE: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Hal Leonard
Yeah in CS3 that's the case - regardless of whether you are using AS2 or AS3. But to my knowledge, in Flash 8, it is still 0 to 100. - Hal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan MacDougall Sent: Friday, August 24, 2007 9:19 AM To:

RE: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Hal Leonard
, 2007 10:29 AM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED Hal Leonard wrote: Yeah in CS3 that's the case - regardless of whether you are using AS2 or AS3. But to my knowledge, in Flash 8, it is still 0 to 100