Recently I needed to scroll a non native locked field using
a finger in an Android App.
I used this script on the locked field script:
Code: Select all
local firstclick
on mouseUp
set the scroll of me to (the scroll of me + (firstclick - mouseV))
end mouseUp
on mouseDown
put the clickV into firstclick
end mouseDown
Thanks in advance!
Al