Caption problem!

ok i read the tutorial and have implemented the caption but modified it to have 3 different captions. This way i could have a center caption a left caption and a right caption.

The reason i made 3 is because the other would go off the screen when on the right and hvered over it.

now the problem i am having is that i have this code on the first frame and it is only linking it to the last one to the hot spot.

startDrag(_root.captionC, true);
startDrag(_root.captionL, true);
startDrag(_root.captionR, true);

Now for each button i have this code telling it to use the different caption movies.

on (rollOver) {
_root.x = 1;
_root.captionC.wordsC = “Caption Center”;
}
on (rollOut) {
_root.x = 0;
_root.captionC.wordsC = " ";
}

on (rollOver) {
_root.x = 1;
_root.captionL.wordsL = “Caption Left”;
}
on (rollOut) {
_root.x = 0;
_root.captionL.wordsL = " ";
}

on (rollOver) {
_root.x = 1;
_root.captionR.wordsR = “Caption Right”;
}
on (rollOut) {
_root.x = 0;
_root.captionR.wordsR = " ";
}

Can someone please help?! I am going crazy and have to turn this in in a few.

PLEASE :slight_smile:

Thanks,
Aaron

i think it just has to do with setting the drag on the first frame.