I have a txt dynamic driven text reader that does display the text correctly in the dynamic text field however I am having trouble with the scroller. This is what i have so far.
this is the code I have in frame 1:
up_btn.onPress = function() {
text1.scroll += 1;
};
I have 2 arrows to move it, this is the code for the up arrow button:
on (press) {
text1.scroll = text1.scroll+10;
}
It isn;t working - can anyone advise on what I am doing wrong or am missing here??
thanks!
this is the code I have in frame 1:
up_btn.onPress = function() {
text1.scroll += 1;
};
I have 2 arrows to move it, this is the code for the up arrow button:
on (press) {
text1.scroll = text1.scroll+10;
}
It isn;t working - can anyone advise on what I am doing wrong or am missing here??
thanks!