I'm trying to scroll some text, "BottomText", with 2 buttons, "Up" and "Dn", but only if the length of the text is over a certain limit.
BUT-- The text has a shadow, which is just a copy of the same text. They both have the same variable name, so that the dynamic text works.

Up Button MC's AS
code:
onClipEvent(load){
if(_root.TextLength > 84){
AllowScroll = "true";
}
}



Up Button's Invis-Button AS
code:
on(release){
BottomText.scroll--;
}



When I try it out, it will only scroll the top layer of text, and not it's "shadow" copy.

HELP!