Hi Guys,
I've been playing around with this for a few days now but cant figure it out.
Basically i have a Graphic that i am moving from point A to point B.
Point b will always be the position 0,0 however point A will change dynamically depending on the positions passed through to it.
i can successfully pass the positions through to the Frame with the tween but i cant get it to work.
I have tried converting the graphic to a Movie Clip in frame one of the tween and the same on the last frame, i have given them 2 separate names, say Graphic1 and Graphic2.
The i have tried setting their positions as follows:
Code:
Graphic1._x = xposition;
Graphic1._y = yposition;
Graphic2._x = 0;
Graphic2._y = 0;
This works in that it puts the graphics in the position i want them, but the tween does not work
Has anyone ideas?