home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
MediaPortal 1 Skins
Popular Skins
PureVision
PureVisionHD 1080
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="catavolt" data-source="post: 1274447" data-attributes="member: 54906"><p>Nearly everthing is possible <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite2" alt=";)" title="Wink ;)" loading="lazy" data-shortname=";)" /></p><p>To do so, there are a lot of changes to be done in different areas (xmls).</p><ol> <li data-xf-list-type="ol">The relevant entries in BasicHomeEditorDefines.xml must be set as in this example from TV section: [CODE=xml]<define property="true" evaluateNow="true">#TV1.background:Animations\BasicHome\3D-Leer.png</define>[/CODE]</li> <li data-xf-list-type="ol">The relevant GIF must be stored in C:\ProgramData\Team MediaPortal\MediaPortal\skin\PureVisionHD 1080\Media\Animations\BasicHome, as for example TV section is "tv.gif".</li> <li data-xf-list-type="ol">Now the last step: You need to add a property in the BasicHome.xml inside Themes/Smart One below the one with the description <span style="font-family: 'courier new'"><description>TV Off image</description></span>.</li> </ol><p>Lets make an example of this control for MyVideos:</p><p>[CODE=xml]<control></p><p> <description>VIDEO image</description></p><p> <type>image</type></p><p> <id>0</id></p><p> <posX>510</posX></p><p> <posY>225</posY></p><p> <width>1100</width></p><p> <height>470</height></p><p> <colordiffuse>ffffffff</colordiffuse></p><p> <texture>Animations\BasicHome\video.gif</texture></p><p> <animation effect="rotatey" time="0" center="1230,0" start="0" end="55" condition="true">conditional</animation></p><p> <animation effect="rotate" time="0" center="1230,0" start="0" end="4" condition="true">conditional</animation></p><p> <visible>skin.hassetting(#skin.categorybackgrounds.basichome)+string.contains(#highlightedbutton,VIDEO1)</visible></p><p> <shouldCache>true</shouldCache></p><p> </control>[/CODE]</p><p>The value in the <string.contains(#highlightedbutton,VIDEO1)> must match the value from the BasicHomeEditorDefines.xml (in this case #VIDEO1) that you want to animate.</p><p>So you change in BasicHomeEditorDefines.xml the entry </p><p><span style="font-family: 'courier new'"><define property="true" evaluateNow="true">#VIDEO1.background:Animations\BasicHome\videos.jpg</define></span></p><p>to</p><p><span style="font-family: 'courier new'"><define property="true" evaluateNow="true">#VIDEO1.background:Animations\BasicHome\3D-Leer.png</define></span></p><p></p><p>Place the Video.gif in C:\ProgramData\Team MediaPortal\MediaPortal\skin\PureVisionHD 1080\Media\Animations\BasicHome,</p><p></p><p>Add the control</p><p>[CODE=xml]<control></p><p> <description>VIDEO image</description></p><p> <type>image</type></p><p> <id>0</id></p><p> <posX>510</posX></p><p> <posY>225</posY></p><p> <width>1100</width></p><p> <height>470</height></p><p> <colordiffuse>ffffffff</colordiffuse></p><p> <texture>Animations\BasicHome\video.gif</texture></p><p> <animation effect="rotatey" time="0" center="1230,0" start="0" end="55" condition="true">conditional</animation></p><p> <animation effect="rotate" time="0" center="1230,0" start="0" end="4" condition="true">conditional</animation></p><p> <visible>skin.hassetting(#skin.categorybackgrounds.basichome)+string.contains(#highlightedbutton,VIDEO1)</visible></p><p> <shouldCache>true</shouldCache></p><p> </control>[/CODE]</p><p>to BasicHome.xml BELOW the existing one (with <span style="font-family: 'courier new'"><description>TV Off image</description></span>), save all your changes, clear the skin cache, restart MP and enjoy <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite2" alt=";)" title="Wink ;)" loading="lazy" data-shortname=";)" /></p></blockquote><p></p>
[QUOTE="catavolt, post: 1274447, member: 54906"] Nearly everthing is possible ;) To do so, there are a lot of changes to be done in different areas (xmls). [LIST=1] [*]The relevant entries in BasicHomeEditorDefines.xml must be set as in this example from TV section: [CODE=xml]<define property="true" evaluateNow="true">#TV1.background:Animations\BasicHome\3D-Leer.png</define>[/CODE] [*]The relevant GIF must be stored in C:\ProgramData\Team MediaPortal\MediaPortal\skin\PureVisionHD 1080\Media\Animations\BasicHome, as for example TV section is "tv.gif". [*]Now the last step: You need to add a property in the BasicHome.xml inside Themes/Smart One below the one with the description [FONT=courier new]<description>TV Off image</description>[/FONT]. [/LIST] Lets make an example of this control for MyVideos: [CODE=xml]<control> <description>VIDEO image</description> <type>image</type> <id>0</id> <posX>510</posX> <posY>225</posY> <width>1100</width> <height>470</height> <colordiffuse>ffffffff</colordiffuse> <texture>Animations\BasicHome\video.gif</texture> <animation effect="rotatey" time="0" center="1230,0" start="0" end="55" condition="true">conditional</animation> <animation effect="rotate" time="0" center="1230,0" start="0" end="4" condition="true">conditional</animation> <visible>skin.hassetting(#skin.categorybackgrounds.basichome)+string.contains(#highlightedbutton,VIDEO1)</visible> <shouldCache>true</shouldCache> </control>[/CODE] The value in the <string.contains(#highlightedbutton,VIDEO1)> must match the value from the BasicHomeEditorDefines.xml (in this case #VIDEO1) that you want to animate. So you change in BasicHomeEditorDefines.xml the entry [FONT=courier new]<define property="true" evaluateNow="true">#VIDEO1.background:Animations\BasicHome\videos.jpg</define>[/FONT] to [FONT=courier new]<define property="true" evaluateNow="true">#VIDEO1.background:Animations\BasicHome\3D-Leer.png</define>[/FONT] Place the Video.gif in C:\ProgramData\Team MediaPortal\MediaPortal\skin\PureVisionHD 1080\Media\Animations\BasicHome, Add the control [CODE=xml]<control> <description>VIDEO image</description> <type>image</type> <id>0</id> <posX>510</posX> <posY>225</posY> <width>1100</width> <height>470</height> <colordiffuse>ffffffff</colordiffuse> <texture>Animations\BasicHome\video.gif</texture> <animation effect="rotatey" time="0" center="1230,0" start="0" end="55" condition="true">conditional</animation> <animation effect="rotate" time="0" center="1230,0" start="0" end="4" condition="true">conditional</animation> <visible>skin.hassetting(#skin.categorybackgrounds.basichome)+string.contains(#highlightedbutton,VIDEO1)</visible> <shouldCache>true</shouldCache> </control>[/CODE] to BasicHome.xml BELOW the existing one (with [FONT=courier new]<description>TV Off image</description>[/FONT]), save all your changes, clear the skin cache, restart MP and enjoy ;) [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Skins
Popular Skins
PureVision
PureVisionHD 1080
Contact us
RSS
Top
Bottom