I had a question about text fields. So I have 6 text fields and I want to make it so that if the scroll bar is used on one of the fields (to go to the next thing) it applies to all the other fields. Is there any way for me to do this?
Thanks!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on scrollbardrag
lock screen
## Create a COMMA delimited list of the names of the fields that should scroll "in sync"
## and then loop through this list
repeat for each item tField in "field 1 without scrollbar,field 2 without scrollbar,field 3 without scrollbar"
set the scroll of fld tField to the scroll of me
end repeat
unlock screen
end scrollbardrag