Question about text scroller script

some one gave me this script to make my text ‘max scroll’

[AS] this.createEmptyMovieClip(“scrollHandler”,-50);
up.onPress = function(){
scrollHandler.onEnterFrame = function(){
textF.scroll–
}
}
down.onPress = function(){
scrollHandler.onEnterFrame = function(){
textF.scroll++
}
}
up.onRelease = down.onRelease = function(){
delete scrollHandler.onEnterFrame
}[/AS]

but i cant get it to work?

few things i dont understand…

  1. this.createEmptyMovieClip(“scrollHandler”,-50);

is scrollHandler the name of the Movie Clip that contains the scroller. if so my movie clip has 2 b that name.

  1. what if. my scroller is in a movie clip called “mainTextBox” that is in another movie clip called “bothleftnrightmain”…would the fact that my text scroller is in a MC that is in another MC?

any ideas?:h: