Here's how to link to a specific Y height:
- Create a 'Mouse Click' --> 'New JavaScript' action
- 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.