Looking for a way to run a autoscroll javascript command or anything on my dashboard in kiosk mode.
Java code:
function scroll(speed) {
('html, body').animate({ scrollTop: (document).height() - (window).height() }, speed, function() {
(this).animate({ scrollTop: 0 }, speed);
});
}
speed = 9000;
scroll(speed)
setInterval(function(){scroll(speed)}, speed * 2);
Any way that anyone has been successful in autoscrolling all the entire dashboard.