Kodi Community Forum
Custom folder Studio Flags - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+--- Thread: Custom folder Studio Flags (/showthread.php?tid=107338)



Custom folder Studio Flags - frellAn - 2011-08-09

I'm trying to set a custom folder for studio flags so they will show up. I have set the folder in settings to the correct one but it just won't work no matter how many different versions of the code I try. Is this even possible?

Code:
<texture background="true" fallback="flagging/studios/default.png">$INFO[ListItem.studio,$INFO[Skin.String(StudiosFolder)],.png]</texture>

If the images are in the sameplace of the fallback everything works fine ofc.


- Hitcher - 2011-08-09

You can't have an INFO inside another INFO.


- `Black - 2011-08-09

Use <texture>$INFO[Skin.String(StudiosFolder)]$INFO[ListItem.studio].png</texture>.


- frellAn - 2011-08-09

Yeah that looks good and should work but it doesn't, anyway I just ignore this idea and piont people to where they should put there images instead.


- `Black - 2011-08-09

There isn't a default or correct place to put the flag images because you can use every folder you want... only thing is that it should be in your skin folder, preferably in your skin's media folder. Smile Did you check if $INFO[Skin.String(StudiosFolder)] is actually correct? Does it work if you use <texture>flagging/studios/$INFO[ListItem.Studio].png</texture>. ?