Hello,
I am working on an interactive guide with some sort of different maps that are supposed to move together depending on where you are if that makes any sense…well no it doesn’t. ok the main clip pans side ways on mouse move using a tutorial from this website. And when this clip slides along x up to a certain point,
I need to get two other clips to also slide to a precise point depending on the first one position, one only along x and the other one on both x and y. OF course i also have to set several key position on the mainclip to mave the two clip at a different place each time the main clip reaches a different point.
For now I have been trying things using mc_tween2 like that:
this.addChild (mainClip)
mainClip._x = …;
mainClip._y = …;
mainClip.addChild (clip1)
clip1._x = …;
clip1._y = …;
mainClip.addChild (clip2)
clip2._x = …;
clip2._y = …;
On ClipEvent = function () {
if (mainClip.xScaleTo (…, …)
clip1.xScaleTo (…, …)
clip2.scaleTo (…,…,…)
}
I have tried lots of other different little things but I don’t really know what I am doing to be honest… Well, I understand codes but I am not really good to write them and I can’t find any exemples. I am usign Flash 8.Please can anyone help???
Thank you