Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi, I have a text box named bio a

Status
Not open for further replies.

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,

try doing this,

on(press) {
bio.scroll--;
}

on(press) {
bio.scroll++;
}
hope this helps u.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top