PDA

View Full Version : help pls


jenny123
03-03-2005, 09:49 AM
how do u do a horizontal scrolling text (like a marquee.. just 1 line) that is continuously scrolling and looping? text should be from an external file.. i can do that but im not sure how to make the loop.. thanks in advance....

Paul Ferrie
03-03-2005, 02:16 PM
http://www.actionscript.org/forums/announcement.php3?f=62

Paul Ferrie
03-03-2005, 02:19 PM
To what exstent do u want to do that i.e screensaver?
U could put your text field in a mc and tween the mc to move from the left of the stage to the right. Is this what you mean?

Paul

citizenvern
03-07-2005, 06:19 AM
onEnterFrame(){
text._x-=1;
if(text._x gets all the way to the left){
put it back on the right;
}
}

right? something like that... i think. It was a busy weekend. No brain cells left.

Paul Ferrie
03-07-2005, 01:30 PM
I think this is what your looking for


textfieldname.onEnterFrame=function(){
if(this._x>0){
this._x-=5
}
if(this._x<=0){
delete textfieldname.onEnterFrame
}
}


Hope it helps