This plugin is awesome, thank you so much!
One note on a change I made to your drag-to-pan events. It's probably already on the forums somewhere but I'll put it here in case drag-to-pan searchers find this thread first :)
In the original, if you drag, let go, then touch and drag again, the window will pop back to the center. If you want to retain the new window position (so you can keep dragging with multiple gestures without it resetting) make these changes:
Make 2 new variables (I just called them StartingPositionX and StartingPositionY) and at layout start set them to WindowWidth/2 and WindowHeight/2 as default values. Use those in the Scroll To action, then on touch end, update those positions to where you've scrolled to.
Basically change this:
<img src="http://storage.wertle.com/construct2/dragToPan1.JPG" border="0" />
To this:
<img src="http://storage.wertle.com/construct2/dragToPan2.JPG" border="0" />