I would like to know if it is possible to track mousemovement in a TideSDK application even when the application is not focused/active.
I am currently using:
$(window).on("mousemove",function(e){
console.log(new Date().getTime());
});
But that obviously doesn't track anything when an other application is active.