Grrrrrr . . . I hope someone can help me!
I used Kirupa’s hover caption tutorial on a little “x” button used to close a window (unloads the movie clip). All this occurs on an swf that I wish to load when I press a button on the main swf.
Now on the main swf I have the following code for a button:
on (release) {
blankMC.loadMovie(“text_box.swf”);
blankMC._x = 100;
blankMC._y = 100;
}
blankMC is a blank movie clip to load the 2nd swf (text_box) into and I’d like to place it as you see above. The problem is that when the button is pressed the 2nd swf (text_box) appears but then follows the mouse around!
So i’m guessing that the code used to make JUST the caption appear around the “x” button is somehow being transfered to the entire 2nd swf. Is there any way to fix it?
Thank you in advance!!