make an object with three instance variables:
oldX, newX, swipespeed we will calculate horizontal swiping speed and put it into swipespeed in every tick:
is in touch
-- set oldX to newX
-- set newX to touch.X
-- set swipespeed to abs(newX - oldX)
cheers