Button to link to specific place on page?

Here's how to link to a specific Y height:

  1. Create a 'Mouse Click' --> 'New JavaScript' action
  2. Insert this code within the JS editor: window.scrollTo(0, 10); (Where 10 would be the Y pixel height you wish to jump to.

If you set an ID on any element, for example contact, then you can link to it by inserting this in the 'go to URL' field: #contact for your Mouse Click --> GO to URL field.

For smooth scrolling, please check this example by @MarkHunte : Smooth Scrolling Additional coding help - #4 by MarkHunte

It has a few examples on jumping to specific points and to the top.