Kodi Community Forum

Full Version: Movie info popup delay
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
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
LOL....you could not be more correct my friend....very addictive once you get into it Smile
Got this to work just now. Thanks!