Kodi Community Forum
Movie info popup delay - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Confluence (https://forum.kodi.tv/forumdisplay.php?fid=125)
+---- Thread: Movie info popup delay (/showthread.php?tid=182358)



Movie info popup delay - proline - 2014-01-05

Where and how in the default Confluence skin do I change the xml to add delay to movie info popup for fanart view as in the Confluence Custom Mod skin? Would just run CCM but I think a plugin addon is related to it crashing on my Ouya.


RE: Movie info popup delay - Mudislander - 2014-01-05

In the file "ViewsVideoLibrary.xml" look for the include "<include name="PosterWrapView2_Fanart">" Work your way down to the scrollbar commands and just under that is a group that calls up the content panel. There is a long visible statement there add the following straight above it.

Code:
<animation effect="fade" start="0" end="100" time="1600" delay="2000">Visible</animation>
<animation effect="fade" start="100" end="0" time="0">Hidden</animation>
<visible>!StringCompare(ListItem.Label,..) + !Container.OnNext + !Container.OnPrevious</visible>

You can adjust the time and delay to you preference.

Have fun, this is how it starts Big Grin


RE: Movie info popup delay - proline - 2014-01-06

LOL....you could not be more correct my friend....very addictive once you get into it Smile


RE: Movie info popup delay - briandlc - 2014-01-12

Got this to work just now. Thanks!