You are reading a single comment by @allObjects and its replies. Click here to read the full conversation.
  • Look pretty internal to me... I tried to do the loop as close as possible, may be too close. Give this variation a shot:

    ,   _send: function(c) {
            console.log("About to send char",c);
            setTimeout(function(_){
                kb.tap(kb.KEY[c],0,_._sent.bind(_)); },1,this);
        }
    

    What it does: It decouples the sending form 'current JS thread'. @Gordon may know if this does matter or not regarding breaking the 'call-chain'.

About

Avatar for allObjects @allObjects started