Specific Slide Selection with Menu Bar

Question:
Is it possible for me (via editor, code, or whatever) to make it so when someone clicks on a menu button that it takes them to a SPECIFIC slide on the page? For example, clicking “About Us” and going to Slide #2 on the Slideshow Element.

Please note, I have looked around, and many include code for people with prior knowledge. Is there an easy way to do this or a step-by-step guide on how to implement this?

Product:
Wix Editor

What are you trying to achieve:
For example, clicking “About Us” and going to Slide #2 on the Slideshow Element.

What have you already tried:
I’ve reached out via multiple platforms and cannot seem to find any answer. I’ve looked on tutorials and multiple pages.

there is not really a step by step guide. You need to learn how to add code to your site.

This is the code that may work. I have not tested.

$w.onReady(function () {
    $w("#aboutUsButton").onClick(() => {
        $w("#mySlideshow").changeSlide(1);
    });
});

you can learn more about velo starting here

Hey; I’m trying to get this to work with Wix’s built-in menu that I did not make via code. I made another post after I did further research (in terms of code) but I cannot seem to figure out how to do this still. I want to be able to detect a click on Wix’s built-in menu and go from there; I know we aren’t meant to make a second post, but I didn’t know how to edit/delete this post.