Moving Pictures Liist View Icon Removal (1 Viewer)

jfirth8187

Portal Member
March 24, 2008
43
0
Brierley Hill
Home Country
United Kingdom United Kingdom
Hi all,

Great skin i'm converted to it, looks amazing on my big tv!

But does anybody know how to get rid of the small icons to the left of the movie name in list view in the Moving pictures part of the skin? I would just like a plain list without the very small icon.

Would appreciate some help, thanks Jon.
 

jfirth8187

Portal Member
March 24, 2008
43
0
Brierley Hill
Home Country
United Kingdom United Kingdom
i liike the look of the b&w skin, what xml file would the moving pictures movie list be under. I've looked in MovingPictures.xml and I can't seem to find the correct line to edit?
 

aj1405

Portal Pro
September 30, 2007
443
302
Home Country
Norway Norway
Removing the listcontrol item isn't possible as far as I know. You could set:

Code:
			<control>
				<description>Movie List</description>
				<type>listcontrol</type>
				<id>50</id>
				<posX>40</posX>
				<posY>260</posY>
				<width>720</width>
				<height>610</height>
				<spinPosX>660</spinPosX>
				<spinAlign>right</spinAlign>
				<textXOff2>700</textXOff2>
				<textureFocus>list_short_focus.png</textureFocus>
				<textureNoFocus></textureNoFocus>
		<itemWidth>0</itemWidth>
		<itemHeight>1</itemHeight>
				<onright>2</onright>
			</control>

but you'll still have a 1px item.
 

jfirth8187

Portal Member
March 24, 2008
43
0
Brierley Hill
Home Country
United Kingdom United Kingdom
I've got it, thanks for you help, did get me in the right place with the xml code, but i've added a line to offset the thumnail off the screen.

Code:
                                                    <control>
				<description>Movie List</description>
				<type>listcontrol</type>
				<id>50</id>
				<posX>40</posX>
				<posY>260</posY>
				<width>720</width>
				<height>610</height>
				<spinPosX>660</spinPosX>
				<spinAlign>right</spinAlign>
				<textXOff2>700</textXOff2>
				<textureFocus>list_short_focus.png</textureFocus>
				<textureNoFocus></textureNoFocus>
				<itemWidth>1</itemWidth>
				<itemHeight>0</itemHeight>
	<IconXOff>2000</IconXOff>
				<keepaspectratio>no</keepaspectratio>
				<onright>2</onright>
			</control>

I've posted this for anybody else who needs, thanks for your help once again.

:D
 

Users who are viewing this thread

Top Bottom