Actionscript question
Actionscript question
- Started
- Last post
- 1 Response
- pixelate
How can I get a mc to follow another mc that is being dragged? I am dragging a line horizontally and i want another mc to move with the dragger.
- fugged0
a few ways you can do this.
the mc that is being dragged can broadcast an event that the other mc listens for and reacts to it
create an onEnterFrame function for the follow mc that updates its position based on the drag mc.
option one is better, option 2 is easier.