I have a scene file that allows our users to select two sports team logos from Streamline that have information embedded in three metadata fields. One is the location of the team (or the name of the university, in the case of colleges), the second is the name of the team (or mascot) and the third is what league or conference they are in.
That third field is used to display the logo for the league or conference automatically on the graphic, using a script:
Dim LeagueLogo as xpBaseObject
Scene.GetObjectByName("LeagueLogo", LeagueLogo)
LeagueLogo.SetVolatileTextureFile(0, Engine.ProjectPath & "\Images\SportsLeagueLogos\" & Text & ".png")
It really is only intended to sort out the college teams.
For instance, if both teams are in the same collegiate conference it will use that conference's logo:
But if they are NOT in the same conference, it displays the NCAA logo:
------------------------------
Kenny Meade
------------------------------