Jump to specific point in scroll mode

hello,
How can I jump to a specific point in the scene at scroll mode by a click event? I have a standard scroll website and I would like that a click on the menu options will move down to that specific section.
I tried “seek symbol” after adding the symbol in the section but doesn’t work.
thanks

Hi Deborah,

Seek symbol action sets the symbol timeline to a specific timestamp.
To scroll to an element, you can use the following script:

doc.getElement('element name').dom.scrollIntoView();

Sample: scroll-into-view.saolapack (1.8 KB)

Regards

1 Like