Hey Charles!
Thanks for these videos! Two things I wanted to share…
- Doing something like Set
language
to language:Mode2
just sets the value of language
in Mode 1 (cause that’s the Mode that your prototype is in) to the value of Mode 2
.
e.g., the values of your variables are
Mode 1 — Language: English
Mode 2 — Language: French
After executing Set language
to language:Mode 2
, you will get:
Mode 1 — Language: French (cause you replaced this value with language:Mode 2
Mode 2 — Language: French
So in your case it wouldn’t actually help to have e.g., color:Mode2
as that would do the same thing; override the value of the variable in the Mode of the Prototype.
–
- That being said the way to fix this would be to have an action that switches the Mode of the prototype to a different Mode. That’s something we’re working on!
The setup would then be sth like this…
The behavior would then be that the prototype changes into this other Mode, making all variables that relate to that change their value. — It’s the equivalent of changing the mode on the page between Mode 1, 2, or 3…
We don’t know yet, when that will land exactly, but yeah, we’re working on that as the solution for your problem.