Caption problem with loaded swf

i have a movie that has captions on different frames and that works but when i load a movie that also has captions for areas it does not work.

this is the caption code that is loaded in the main movie first frame.

/*tooltip metod for MovieClip object
parameters definition:
m= the message for tooltip.
rgb= the background color for the tooltip.
*/
MovieClip.prototype.toolTipL = function(m, rgb) {
tipOn = this.hitTest(_root._xmouse, _root._ymouse, true) ? true : false;
format = new TextFormat();
with (format) {
font = “verdana”;
size = 6;
color = 0x14444D;
}
if (tipOn) {
//if bolean object=true create field.
this.createTextField(“tipL”, 1, 0, 0, 0, 0);
with (this.tipL) {
text = m;
_x = this._xmouse;
_y = this._ymouse-20;
autoSize = “left”;
type = “static”;
background = true;
border = true;
selectable = false;
backgroundColor = “0x”+rgb;
borderColor = 0x000000;
setTextFormat(format);

}
} else if (!tipOn) {
//if bolean object=false remove field.
this.tipL.removeTextField();
}
};
MovieClip.prototype.toolTipC = function(m, rgb) {
tipOn = this.hitTest(_root._xmouse, _root._ymouse, true) ? true : false;
format = new TextFormat();
with (format) {
font = “verdana”;
size = 6;
color = 0x14444D;
}
if (tipOn) {
//if bolean object=true create field.
this.createTextField(“tipC”, 1, 0, 0, 0, 0);
with (this.tipC) {
text = m;
_x = this._xmouse;
_y = this._ymouse-20;
autoSize = “center”;
background = true;
border = true;
type = “static”;
selectable = false;
backgroundColor = “0x”+rgb;
borderColor = 0x000000;
setTextFormat(format);
}
} else if (!tipOn) {
//if bolean object=false remove field.
this.tipC.removeTextField();
}
};
MovieClip.prototype.toolTipR = function(m, rgb) {
tipOn = this.hitTest(_root._xmouse, _root._ymouse, true) ? true : false;
format = new TextFormat();
with (format) {
font = “verdana”;
size = 6;
color = 0x14444D;
}
if (tipOn) {
//if bolean object=true create field.
this.createTextField(“tipR”, 1, 0, 0, 0, 0);
with (this.tipR) {
text = m;
_x = this._xmouse;
_y = this._ymouse-20;
autoSize = “right”;
background = true;
border = true;
type = “static”;
selectable = false;
backgroundColor = “0x”+rgb;
borderColor = 0x000000;
setTextFormat(format);
}
} else if (!tipOn) {
//if bolean object=false remove field.
this.tipR.removeTextField();
}
};

Then this is the code of the loaded external swf on the frame in a movie.

this.onEnterFrame = function() {
Laurel.toolTipC(“Laurel”, “CCCCCC”);
};

then i have a invisible movie clip named Laurel that when you mouse over it should show up.

Can some one help?

any help would be greatly appreciated! :slight_smile: