Flash MX code : no longer works in Flash 8! :(
Hi,
I have some code, which made a textfield scroll up and down, it worked fine in Flash MX, but I upgraded to Flash 8 and it stopped working.
Here is the code.
Quote:
onClipEvent (enterFrame) {
Y = (getProperty("_root.Scroller", _y)-(_global.top))*(_global.factor);
newY = oldY-(Y+oldY)/(_global.ease);
setProperty("_root.TextContainer.TextField", _y, newY);
oldY = newY;
}
Can anybody give me a clue as to how to rework this in Flash 8??
Cheerz,
Dwayne