I stream on youtube and I have OBS Studio which has a built-in browser.
I would like to know what is a suitable code if I want to have a pressed space button in every 20 seconds on that website automatically?
I stream on youtube and I have OBS Studio which has a built-in browser.
I would like to know what is a suitable code if I want to have a pressed space button in every 20 seconds on that website automatically?
I tried this but doesn't work (now 2 sec for easy testing)
$(window).load(function() {
var e = $.Event('keydown', { keyCode: 32 });// space key
setInterval(function() {
$(document).trigger(e);
}, 2000);
});