How to make instead of scroller component 2 mc which would scroll the text up and down.I’ve made the Scrolling Dynamically Loaded Text tut but instead of scroller i want 2 mc which would scroll the text.Ive tried using
on (press) {
onEnterFrame = function() {
--_root.text.scroll;
}
}
on (release) {
delete onEnterFrame;
}
for up btn and
on (press) {
onEnterFrame = function() {
++_root.text.scroll;
}
}
on (release) {
delete onEnterFrame;
}
but it doesnt work.