Multistate Function?

@harleyweber
First of all —> please use CODE-TAGS when you show some code.
like this…

CODE in CODE-TAG here

SECOND! What is exactly the problem ?
You have a MultiStateBox (MSB) where you can dublictae your states.

For example you have now this in state1…

Then you should have in STATE-2 the same, but this time “Logo-Design” should be RED and “Brand Creation / Transformation” should be BLACK.

That’s all, because when you switch the state from 1 to 2, you will see the effect, that “Brand Creation / Transformation” changes to BLACK and “Logo-Design” change it’s color to RED.

So what was the problem one more time? :grin:

$w.onReady(function () {    
   $w("#ReadMoreButton1").onClick(() => {Brand-Creation            
      $w('#ReadMoreStateBox1').changeState("expandedState1");        
   });    
   
   $w("#ReadMoreButton2").onClick(() => {//Logo-Design
      $w("#ReadMoreStateBox2").changeState("expandedState2");
   });

   $w("#ReadMoreButton3").onClick(() => {//Brand-Guidelines
      $w("#ReadMoreStateBox3").changeState("expandedState3");
   });
});

So my question is now —> Why do you put it into a SLIDE-SHOW ?