Aug 20, 2001 #1 duponty Instructor Joined Oct 25, 2000 Messages 101 Location 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 Joined Jul 26, 2001 Messages 3 Location IN hi, try doing this, on(press) { bio.scroll--; } on(press) { bio.scroll++; } hope this helps u. Upvote 0 Downvote