RE: [Flashcoders] Tween not working in AS

2005-10-26 Thread Mendelsohn, Michael
 So I need to find a nice clear definition of how they work. Any links?

I'm not sure about links to explanations of _parent and this other
than the documents, but for using the Tween class, look up Jen de Haan
on the Macromedia site.  She wrote a great article about its usage.

For the first param in Tween, are you using _parent.obj?  Try tracing
that object, and see if it traces what you want to tween first.

- MM

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Tween not working in AS

2005-10-25 Thread Mendelsohn, Michael
Don't know if it matters, but I always assign the Tweens to a var name.
That way, you can refer to them later, with onMotionFinished, etc.

- MM

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Michael
Bedar
Sent: Tuesday, October 25, 2005 3:35 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Tween not working in AS


Is l2Company_mc inside of 1_mc.company_btn?  Otherwise we have a  
problem...


On Oct 25, 2005, at 2:55 AM, lists wrote:

 Hi there

 I have the following code on my main timeline. I also have a few  
 MovieClips of which I need ot animate onPress:

 import mx.transitions.Tween;
 import mx.transitions.easing.*;
 //l1
 new Tween(this.l1_mc, _alpha, Strong.easeOut, 0, 100, 3, true);
 new Tween(this.l1_mc, _y, Strong.easeOut, 106, 6, 1, true);
 //l2
 this.l1_mc.company_btn.onPress = function() {
 new Tween(this.l2Company_mc, _alpha, Strong.easeOut, 0, 100, 3,  
 true);
 new Tween(this.l2Company_mc, _y, Strong.easeOut, 106, 6, 1, true);
 }

 Now for some reason the onPress is not working. I put a trace in  
 there and i do get feed back from that, however the
 MovieClip will not animate. is ther ean error in my code?

 Thanks!

 ::
  Dustin
 ::

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders