MediaPortal Forums HTPC/MediaCenter
Old 2007-09-30, 05:59   #1 (permalink)
Portal Member
 
Join Date: Mar 2006
Location: Valinhos, Brazil
Age: 25
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts

My System

Question Fan Art in PMIII

Hi all,

I'm trying to put fanart in PMIII skin but I'm having some problems with the list/graphical view. I need the list in the left side for series that don't have fanart and in right side for series that have it. Here is an example of what I'm trying to do:

Code:
		<!-- LIST /GRAPHICAL VIEW ****************************************** -->
		<!-- Fanart -->
		<control>
			<type>group</type>
			<description>group element</description>
			<id>28</id>
			<layout>StackLayout</layout>
			<posX>60</posX>
			<posY>97</posY>
			<visible>Control.IsVisible(1232)</visible>					
			<control>
				<description>composite control consisting of a list control and a thumbnail panel</description>
				<type>facadeview</type>
				<id>50</id>
				<control>
					<description>graphical list (series and seasons if set)</description>
					<type>listcontrol</type>
					<subtype>album</subtype>
					<id>50</id>
					<posX>5</posX>
					<posY>125</posY>
					<width>315</width>
					<height>420</height>
					<IconXOff>2</IconXOff>
					<IconYOff>2</IconYOff>
					<spaceBetweenItems>2</spaceBetweenItems>
					<remoteColor>60A0A0A0</remoteColor>       		<!-- watched color -->
					<downloadColor>FFFFFFFF</downloadColor>   		<!-- not watched color -->
					<textcolor>60505050</textcolor>					<!-- local file not present color -->
					<textcolor2>60505050</textcolor2>				<!-- local file not present color  column 2-->
					<textcolor3>60505050</textcolor3>				<!-- local file not present color column 3-->
					<spinPosX>1180</spinPosX>
					<spinPosY>620</spinPosY>
					<visible>Control.IsVisible(1232)</visible>
				</control>
				<control>
					<description>text list</description>
					<type>listcontrol</type>
					<id>50</id>
					<textureHeight>60</textureHeight>
					<itemWidth>65</itemWidth>
					<itemHeight>45</itemHeight>
					<IconXOff>10</IconXOff>
					<IconYOff>7</IconYOff>
					<posX>390</posX>
					<posY>200</posY>
					<width>325</width>
					<height>350</height>
					<textXOff2>320</textXOff2>
					<textYOff2>15</textYOff2>
					<textYOff>15</textYOff>
					<textXOff>0</textXOff>
					<spaceBetweenItems>0</spaceBetweenItems>
					<remoteColor>60A0A0A0</remoteColor>       		<!-- watched color -->
					<downloadColor>FFFFFFFF</downloadColor>   		<!-- not watched color -->
					<textcolor>60505050</textcolor>					<!-- local file not present color -->
					<textcolor2>60505050</textcolor2>				<!-- local file not present color  column 2-->
					<textcolor3>60505050</textcolor3>				<!-- local file not present color column 3-->
					<spinPosX>1180</spinPosX>
					<spinPosY>500</spinPosY>
					<keepaspectratio>true</keepaspectratio>
				</control>
			</control>
		</control>
		<!-- No Fanart -->
		<control>
			<type>group</type>
			<description>group element</description>
			<id>28</id>
			<layout>StackLayout</layout>
			<posX>60</posX>
			<posY>97</posY>
			<visible>!Control.IsVisible(1232)</visible>	
			<control>
				<description>composite control consisting of a list control and a thumbnail panel</description>
				<type>facadeview</type>
				<id>50</id>
				<control>
					<description>graphical list (series and seasons if set)</description>
					<type>listcontrol</type>
					<subtype>album</subtype>
					<id>50</id>
					<posX>5</posX>
					<posY>125</posY>
					<width>315</width>
					<height>420</height>
					<IconXOff>2</IconXOff>
					<IconYOff>2</IconYOff>
					<spaceBetweenItems>2</spaceBetweenItems>
					<remoteColor>60A0A0A0</remoteColor>       		<!-- watched color -->
					<downloadColor>FFFFFFFF</downloadColor>   		<!-- not watched color -->
					<textcolor>60505050</textcolor>					<!-- local file not present color -->
					<textcolor2>60505050</textcolor2>				<!-- local file not present color  column 2-->
					<textcolor3>60505050</textcolor3>				<!-- local file not present color column 3-->
					<spinPosX>1180</spinPosX>
					<spinPosY>620</spinPosY>
					<visible>!Control.IsVisible(1232)</visible>
				</control>
				<control>
					<description>text list</description>
					<type>listcontrol</type>
					<id>50</id>
					<posX>5</posX>
					<posY>125</posY>
					<height>360</height>
					<width>315</width>
					<spaceBetweenItems>2</spaceBetweenItems>
					<remoteColor>60A0A0A0</remoteColor>       		<!-- watched color -->
					<downloadColor>FFFFFFFF</downloadColor>   		<!-- not watched color -->
					<textcolor>60505050</textcolor>					<!-- local file not present color -->
					<textcolor2>60505050</textcolor2>				<!-- local file not present color  column 2-->
					<textcolor3>60505050</textcolor3>				<!-- local file not present color column 3-->
					<spinPosX>1180</spinPosX>
					<spinPosY>620</spinPosY>
				</control>
			</control>
		</control>
Does anybody know if is possible to do this and what I'm doing wrong?

Thanks!
Simius
Simius is offline   Reply With Quote
Old 2007-09-30, 15:44   #2 (permalink)
Portal Member
 
Join Date: Mar 2006
Location: Valinhos, Brazil
Age: 25
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts

My System

Default

Some screens:


I still don't find a way to put the two kinds of list together, the first type in xml is used in all cases.

Any ideas?

Thanks again,
Simius
Simius is offline   Reply With Quote
Old 2007-09-30, 17:13   #3 (permalink)
Retired Team Member
 
Inker's Avatar
 
Join Date: Dec 2004
Posts: 1,653
Thanks: 43
Thanked 145 Times in 62 Posts

My System

Default

If you want to move the list somewhere else depending on fanart, youll need to "trick". Create an animation with the end position to where you want the list to be if fanart is show, and use the dummy control's isvisible property as the animation trigger.

I'm sure a skinner can help you out better though.
__________________

There are only two industries that refer to their customers as "users".
- Edward Tufte
Inker is online now   Reply With Quote
Old 2007-10-03, 02:32   #4 (permalink)
Portal Member
 
Join Date: Mar 2006
Location: Valinhos, Brazil
Age: 25
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts

My System

Default

Thanks for the tip Inker. I tried to do what you said, but don't had good results. My first idea was not just change the place of the control, but change the format (See the screenshots, the idea was put the two kinds of lists that you can see in the screens working depending on the fanart). The problem is that seems that you cannot manipulate the visibility of individual controls inside a facade view.

It would be better if I put this topic in the skin section?

Simius is offline   Reply With Quote
Old 2007-10-03, 16:35   #5 (permalink)
MP Donator
 
Join Date: Aug 2006
Location: Nicosia
Age: 29
Posts: 207
Thanks: 36
Thanked 5 Times in 5 Posts

Country:

My System

Send a message via ICQ to papas Send a message via MSN to papas
Default

did you have any luck mate to add fanart in pm3?
papas is offline   Reply With Quote
Old 2007-10-08, 00:14   #6 (permalink)
Portal Member
 
Join Date: Mar 2006
Location: Valinhos, Brazil
Age: 25
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts

My System

Default

Quote:
did you have any luck mate to add fanart in pm3?
First, sorry for the late answer, complicated week!!!

I still didn't find a way to integrate the two kinds of lists, but here is what I did until now. Works fine with series that have fanarts.

Perhaps someone can help to find a way to do that.

Simius is offline   Reply With Quote
Old 2007-10-08, 06:42   #7 (permalink)
MP Donator
 
Join Date: Aug 2006
Location: Nicosia
Age: 29
Posts: 207
Thanks: 36
Thanked 5 Times in 5 Posts

Country:

My System

Send a message via ICQ to papas Send a message via MSN to papas
Default

thx for sharing it mate
will give it a go and let you know what happends
papas is offline   Reply With Quote
These User Thank You:
Old 2007-10-30, 18:53   #8 (permalink)
Portal Member
 
Join Date: Jan 2007
Posts: 117
Thanks: 7
Thanked 0 Times in 0 Posts


Default

This is amazing, ive been so bummed since I couldnt use Fan Art in my favorite skin. I hope you can figure out the list issues so that everything displays correctly in it. Good Luck
hermy65 is offline   Reply With Quote
Old 2007-10-30, 19:20   #9 (permalink)
MP Donator
 
Join Date: Aug 2006
Location: Nicosia
Age: 29
Posts: 207
Thanks: 36
Thanked 5 Times in 5 Posts

Country:

My System

Send a message via ICQ to papas Send a message via MSN to papas
Default

it looks like harley gave up on pm3 he must be really busy with xface
papas is offline   Reply With Quote
Old 2007-10-30, 19:54   #10 (permalink)
Portal Member
 
Join Date: Jan 2007
Posts: 117
Thanks: 7
Thanked 0 Times in 0 Posts


Default

Yeah, it looks that way. I also did notice that after I used this new tvseries.xml file that there is no longer the spinning circle animation in the lower left hand corner when its updating.
hermy65 is offline   Reply With Quote
Reply

Bookmarks

Tags
art, fan, pmiii

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
The Future of Fan Art SamFulton My TVSeries 19 2009-02-14 04:55
fan art question Burnt33 My TVSeries 11 2007-08-03 03:27
Idiots guide to Fan Art yatesd My TVSeries 3 2007-07-19 12:49
Fan Art rulez! piranha My TVSeries 22 2007-07-18 17:26
Fan Art,Centerstage Project in MP juho Improvement Suggestions 2 2007-07-01 23:34


All times are GMT +1. The time now is 16:30.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2 Protected by Akismet Blog with WordPress
Advertisement System V2.6 By   Branden