Funky gave me the link to the flash radio that had a scrolling track listing (THANK YOU!). I only took that code and mixed it with the first one, because I didn't need all the other things that came with his version. I have it scrolling but my problem is, it does not scroll back around. You can view it
here.
Code for the scoll I'm using:
this.onEnterFrame = function() {
_root.display_txt._x -= 1;
if (_root.display_txt._x < (-100-_root.display_txt.width)) {
_root.display_txt._x = 225;
}
}
My text field x position is 225 thats why I dont get why it isn't scrolling back =/