Change Perspective Flex Container back ground Image based on tag value

Hi all. I am trying to change the background image of a flex container based on a tag value. Any ideas on how to do this. I'm striking out.

Add a binding to the backgroundImage property.
Make it a tag binding, and point that to your tag.
Add a transform:

  • if you have only a handful of possible values, use a map transform
  • if you a lot of possible values, use either a script transform to programmatically evaluate the image path, or use a lookup expression to fetch the image path from a dataset.

Thanks, i didn't know you could have a style Output Type. Tansform it is. Thank you agian.