Re: [Flashcoders] Combined Classes fail Tween Class

2007-04-05 Thread Helmut Granda
Graupmann Sent: Wednesday, April 04, 2007 8:53 PM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Combined Classes fail Tween Class Jason - I'm pretty sure this is NOT in conflict, but still not good practice. Since target:MovieClip is a variable local

RE: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Merrill, Jason
Where's the code that has the motion tweens? Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Wednesday, April 04, 2007 5:14 PM To:

RE: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Merrill, Jason
Also, you are casting the same variable twice: var target: Application; public function Application ( target:MovieClip ) mc = target; is target an application or a movieclip? Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia

Re: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Helmut Granda
Both movies have regular scripted tweens. so that is why I am afraid they are conflicting with each other On 4/4/07, Merrill, Jason [EMAIL PROTECTED] wrote: Where's the code that has the motion tweens? Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team

Re: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Helmut Granda
target is a movieclip, this helps me to instantiate the class in the place I desire for example: var upsApp:Application = new Application(this); var upsApp:Application = new Application(movie1); var upsApp:Application = new Application(movie2); Learned that this week :) On 4/4/07, Merrill,

RE: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Merrill, Jason
Both movies have regular scripted tweens. so that is why I am afraid they are conflicting with each other Yeah, I mean, I'm not sure I can picture what: the latest movie plays as if the latest movie stealed all the motion Tweens and used them leaving the first movie naked looks like, but

RE: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Merrill, Jason
target is a movieclip, this helps me to instantiate the class in the place I desire Right - so then to remove any potential conflicts, take out: var target: Application; Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team

RE: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Jesse Graupmann
Of Merrill, Jason Sent: Wednesday, April 04, 2007 3:26 PM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Combined Classes fail Tween Class target is a movieclip, this helps me to instantiate the class in the place I desire Right - so then to remove any potential conflicts, take out

RE: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Jesse Graupmann
If you want to send me your files, I don't mind taking a look. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Wednesday, April 04, 2007 5:27 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Combined Classes fail

RE: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Merrill, Jason
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jesse Graupmann Sent: Wednesday, April 04, 2007 8:53 PM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Combined Classes fail Tween Class Jason - I'm pretty sure this is NOT in conflict, but still not good

Re: [Flashcoders] Combined Classes fail Tween Class

2007-04-04 Thread Helmut Granda
To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Combined Classes fail Tween Class Jason - I'm pretty sure this is NOT in conflict, but still not good practice. Since target:MovieClip is a variable local to the constructor, you just have to access the class target:Application by using