This is how you can create the effects needed for a more visually appealing walkthrough tour
You can use a bit of HTML and Javascript to build your own tour
First thing is to “blackout/greyout/blur” your page…to do so you will need a group element that covers your page…you can set whatever color you want; how about a “redout”
Then in workflows you should have a button that you use to show it, which would be the start of the tour.
To get a blur effect, you will need an html element on your page
After you got your blur group all set up you need to use the Javascript to set the z-index of the elements you want to have “highlighted”…what is actually happening is the element is being “sent to the front” and sitting on top of the blur group.
make sure you have your element ID exposed so you can set it…this is needed for both the HTML and JS
You will obviously also need the JS plugin ( search toolbox to get the right one ) and the html plugin…both are free
then you would set up all the other stuff needed to guide the user from element to element…
Notice how the navigation button is brighter and not blurry like the rest of the elements on the page…that’s the Z-index from JS and the blur from html
You could even use this to guide your users through their first transaction or adding a listing since the elements that are set on top of the blur group using the z-index are accessible and can be used