Ok I have the common .swf loading up externally into another .swf. The problem is that all the _root stuff is getting screwed up because it is getting itself mixed up. how do I staighten the _root out? With levels? For example I have text that follows the cursor when over a button, but when I go to a scroller in the external movie, then back to the button, it shows the text over the scroller. Please help. I have tried putting _level1_root. but can’t get it. Thanks so much in advance.
ok, first let me also state: please don’t cross post. it’s quite annoying if you try to help someone to find out later that somebody else already answered the question in another thread.
But now that Sen took care of you’re other thread, here’s what I did.
On your main timeline you have
[AS]
startDrag(this.caption, true);
[/AS]
When debugged your movie notice the _dropTarget property of the caption mc which gets set to the scrollbar. That’s why it sticks to it when going back to the menu.
So I removed this line and instead put this on the caption mc:
[AS]
onClipEvent (enterFrame) {
if (_level0_root.gem == 1) {
_level0_root.gem_alpha = 60;
}
else {
_level0_root.gem_alpha = 0;
}
this._x = _root._xmouse;
this._y = _root._ymouse;
}
[/AS]
p.s. Notice I also made a small change to your if-statement.
Seems everything is working fine now.
I said before you had to change the * to a “k” because that word is bad and won’t let me type it or have it in a link. I am terribly sorry for the cross posting business. Thanks for the help though, I will check it out.