Action Script help …URGENT
Please help…I know a few basics of actionscript but nothing more. I’m trying to create a simple intro to a webpage and I need some help. If anybody could help that would be much appreciated. I have a movie clip (a line of text) moving across the stage using a this simple code:
onClipEvent(enterFrame) {
speed = 3;
this._x += speed;
}
-So now that I have it moving, as soon as the front end of it reaches the edge of the stage I wish to have it wrap to the opposite edge of the stage and repeat. So if that is too wordy basically I want a constant line of text moving across the screen. Any help would be much appreciated. thank you all.