FLASH AS HELLLPPPP!
FLASH AS HELLLPPPP!
Out of context: Reply #1
- Started
- Last post
- 4 Responses
- unfittoprint0
STOP SHOUTING.
now:
#1. make 2 buttons [arrowUp & arrowDown)
#2. put them on Stage, name them and also name the textfield [MyText]
#3 use this:
arrowUp.onPress = function(){
myText.scroll = myText.scroll +1;
}arrowDown.onPress = function(){
myText.scroll = myText.scroll -1;
}