Jump to content
Search Community

Using movieclip as motion path

nball test
Moderator Tag

Recommended Posts

Warning: n00b question!

 

I'd like to use TimelineMax to animate clips along other clips. The examples I can find using MotionPath all utilize generated paths vs. hand drawn paths. Can I simply designate hand drawn paths (which are mc's) using MotionPath?

 

 

Link to comment
Share on other sites

Sorry, there is no way for us to parse Bezier data from a hand-drawn path in Flash.

 

Although somewhat limited, compared to MotionPaths, you could create a MovieClip in flash with a guided animation and then add tweens to your TimelineLite/Max that use the FramePlugin to control those movie clip animations:

 

http://www.snorkl.tv/2010/10/overview-of-tweenmax-framelabel-and-frame-plugins-nifty-way-to-play-a-flash-timeline-backwards/

Link to comment
Share on other sites

YOu can do this somewhat at dev time, not at runtime as far as I'm aware of though.

 

Save this into a JSFL file, and do a run command from within flash with a shape selected. Your milage may vary but it should get you the points of an object.

var vertices = fl.getDocumentDOM().selection[0].vertices;

//getting the points and trace them
for(var i = 0; i < vertices.length; ++i)
{
	fl.trace(vertices[i].x + "," + vertices[i].y);
}
  • Like 1
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...