Header (group, floating group or some other element) can be hidden when the user scrolls down the page with checking Current page scrolling position and setting the Visible property accordingly. Here’s how to do this smoothly, so that header slowly slides up, and then down again when user scrolls back:
Firstly Expose the option to add an ID attribute to HTML elements under Settings | General appearance of the application
For the element in question, set its ID Attribute (bellow on the properties box)
myFloatingGroup is the ID attribute of the element. The property style.top under if else with the number -113px is the number of pixels that the element should slide - this is usually its height. The numbers 2 in properties document.body.scrollTop and document.documentElement.scrollTop are the amounts of scrolling to make the element slide.