Switching between Avatar personas
It is possible to change the appearance of the avatar "on-the-fly", i.e. while the project is running. At a certain point in your flow, you could simply "change the persona" of your Avatar.
To do this, go to the avatar selection and hold the mouse over the avatar you want to change to, then you will see its ID:
Then append the following to the URL of your avatar: ?PluralAvatarID=11
This should then look something like this (just with the URL of your own Avatar): https://go.plural.io/s/0172c7ad4e?PluralAvatarID=11
Then you can use this again in a script element to load the Avatar in the same tab of your browser: openLink('https://go.plural.io/s/0172c7ad4e?PluralAvatarID=11', '_blank');
(you can delete everything else from the script element)
Now the avatar is reloaded in the browser tab, with the other character. This means you also need another script element to get back to the previous avatar. Something like this:
You can of course replace the back-to-flow start element with what you want the respective Avatar to do.