My code:
Code: Select all
on mouseDown
   touchStart
end mouseDown
on mouseUp
   touchEnd
end mouseUp
on touchStart
   repeat until touchEnd -- Problem area
      wait 100 milliseconds
      incrementScore
   end repeat
end touchStart
on incrementScore
   add 1 to scoreProgress -- add 1 to the score
   set the thumbPosition of scrollbar "progress" to scoreProgress
   put scoreProgress & "!" into fld "timerLbl" of grp "center"
end incrementScore