Next & Preview Buttons for Multi-State-Box (Velo)

@stschuele Gotcha. Yes. It is weird to right it out with the ellipses like … but the function is here :

$w("#myStatebox").changeState("state2");

That will tell the box to change to the relevant state you want. Note that “#myStatebox” is the id for your Multistate box and “state2” in the code above in the example is the state you want to go to so need to change it appropriately. In my test site, mines looks like this:

export function buttonEvenMore_click(event) {
        $w('#multiStateBox1').changeState('state3');
}

That should work with the timer too if it happens before things time elapses.