Feature suggestion, new gesture, So I wanted to double tap my homescreen to open my app drawer, but I found this…

Feature suggestion, new gesture, So I wanted to double tap my homescreen to open my app drawer, but I found this isn’t possible with a full screen Zooper widget, i saw the double tap option in events and actions but thats only for an empty space so that didn’t work, So I tried long pressing the Zooper Widget going to customize item and more and then + were I found some gestures I can do on the widget but there’s no double tap I’m guessing this is because most widgets are clickable and this might cause problems but it would be great if we could do this anyway.

Hope that makes sense. Thanks.

Edit: Just realized I can disable clicking on the widget this still doesn’t help though because I need to tap on a certain part of the widget to do something, and disabling clicks makes that impossible but it does allow me to double tap.

]]>

One Commentto Feature suggestion, new gesture, So I wanted to double tap my homescreen to open my app drawer, but I found this…

  1. Anonymous says:

    < ![CDATA[

    Using my latest script: (you will need to place an item to all apps named ‘All apps’ because I can’t go to the app drawer from script)





    //time in milliseconds between clicks


    var delta = 250;



    function singletap(){


    //action to execute in single tap


    //nothing



    }



    function dobletap(){


    //action to execute in doble tap


    event.getContainer().getItemByLabel(“All apps”).launch();



    }



    var event=LL.getEvent();


    var item=event.getItem();


    var id=item.getId();


    var time=event.getDate();



    var data = JSON.parse(LL.getScriptTag())||[-1,-1];



    if(data[0]==id && time < ( data[1] + delta) ){


    LL.setScriptTag(null);


    dobletap();


    }else{


    LL.setScriptTag(JSON.stringify([id,time]));


    setTimeout(function(){data2=JSON.parse(LL.getScriptTag())||[-1,-1];if(data2[0]==id&&data2[1]==time)singletap();},delta);


    }


    ]]>

Leave a Reply

Your email address will not be published. Required fields are marked *