Aug 20, 2001 #1 duponty Instructor Oct 25, 2000 101 CA Hi, I have a text box named bio and I want to scroll it. I have this for the up button on (press) { /:bio.scroll = /:bio.scroll-1; } which works well but this on (press) { /:bio.scroll = /:bio.scroll+1; } doesn't work for the down button. Why? thanks Yannick
Hi, I have a text box named bio and I want to scroll it. I have this for the up button on (press) { /:bio.scroll = /:bio.scroll-1; } which works well but this on (press) { /:bio.scroll = /:bio.scroll+1; } doesn't work for the down button. Why? thanks Yannick
Aug 21, 2001 #2 tharini Programmer Jul 26, 2001 3 IN hi, try doing this, on(press) { bio.scroll--; } on(press) { bio.scroll++; } hope this helps u. Upvote 0 Downvote