1. #1
    Sencha User
    Join Date
    Dec 2011
    Posts
    1
    Vote Rating
    0
    znero is on a distinguished road

      0  

    Default 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.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,582
    Vote Rating
    433
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    For pinch... you can add a listener to an Ext.Element instance:

    Code:
    var el = Ext.get('someId'); //or cmp.el
    
    el.on('pinch', function(e, n) {});
    Dragging, there is an example that comes in the examples folder of the downloaded zip. It's actually really easy.
    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.