Jump to content
Search Community

tween not quite smooth

jimeast test
Moderator Tag

Recommended Posts

I have a MovieClip named holder_mc that contains 5 MovieClips each of the five contains a text field. When I tween the text moves somewhat independently. I would like if the test didn't move independently.

view here: http://mespinach.com

code:

import com.greensock.*;
import com.greensock.easing.*;

var buttons:Array = new Array(holder_mc.btn1,holder_mc.btn2,holder_mc.btn3,holder_mc.btn4,holder_mc.btn5);

TweenMax.allFrom(buttons, 1, {y:93, alpha:0, scaleX:0, scaleY:0, ease:Back.easeOut}, .5);

for (var i:int = 0; i < holder_mc.numChildren; i++) {
   if (holder_mc.getChildAt(i) is MovieClip) {
	this.mouseChildren=false;
	//this.buttonMode=true;
   }
} 

 

I also can't seem to set both mouseChildren=false and buttonMode=true any hrlp would be greatly appreciated...thanks.

Link to comment
Share on other sites

feel free to upload a zip of your file(s).

 

 

is you anti-alias mode set for "anti-alias for animation"?

 

 

and I think you want something more like:

 

 

for (var i:int = 0; i     if (holder_mc.getChildAt(i) is MovieClip) {
   holder_mc.getChildAt(i).mouseChildren=false;
   holder_mc.getChildAt(i).buttonMode=true;
   }
}

Link to comment
Share on other sites

anti-alias for animation was already set. would it help to cache as bitmap?

Do you notice how the text bounces around while it's containing MovieClip moves smoothly. Maybe it's just the nature of the beast and I have to live with it.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...