Hello,
I created a DashBoard that will pull in team logos based on the selected team using:
var league = params.getValueAsString('Select_HOME_League', 0);
var team = params.getValueAsString('Select_HOME_Team', 0);
var logopath = 'bg-u:file:/D:/TEAM LOGOS/'+ league +'/'+ team +'/TEAM_LOGO_FULL.png';
ogscript.setStyle('HOME_Logo', logopath);
This was working great when the DashBoard, XPression and logo files all lived on the XPression computer. We've since moved the Dashboard to a separate computer (it's connected and working correctly with XPression) but I can't seem to figure out the new path. The 'TEAM LOGOS' folder is shared on the network and visible from the Dashboard computer. And I can open up the png files to view them. But the DashBoard won't seem to load them. I assumed the new path would be some version of this:
'bg-u:smb://169.254.109.199/TEAM LOGOS/'+ league +'/'+ team +'/TEAM_LOGO_FULL.png'
I've also tried using the computer name in place of the IP and used %20 in place of the spaces in the folders but haven't had any luck.
Thanks