-
14 Dec 2011 7:32 AM #1
Dragging, rotating/pinching objects
Dragging, rotating/pinching objects
Hello, does Sencha include some features to implement pinch (for size manipulation)/rotate gestures of objects? I've seen a link to some pinch example in an old thread but it's dead.
I'm especially looking to do something where an object for example contains a button which can be activated by touch, but if the button is activated as part of a gesture the even won't fire.
-
14 Dec 2011 7:38 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
For pinch... you can add a listener to an Ext.Element instance:
Dragging, there is an example that comes in the examples folder of the downloaded zip. It's actually really easy.Code:var el = Ext.get('someId'); //or cmp.el el.on('pinch', function(e, n) {});Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote