Personal Video Database
English => Support => Topic started by: street_samurai on January 22, 2013, 09:35:48 pm
-
Hi All,
Looove PVD. Thanks for all the great work programmers and community!
I use 1.0.2.3 and the pvd_classic_movie skin. My need is fairly basic (i think): I have 6 poster images for each of my movies and instead of displaying one at a time (with a control), I'd like to display all of them in a row near the top of the skin (without the control).
I removed the control from the xml file but can't figure out how show more than one poster at a time. I've searched the forums and read the docs but still can't figure it out.
Any help or direction would be great!
-
The following shows control and an imagelist placed under (i.e., in the same column as) a poster, to show thumbnails of additional posters. That's not what you want, but shows the use of imagelist. I suppose you would set the height and width higher, and put it in a column wide enough to display six in a row. Poster and the controls would still have to exist, but could be made small and placed elsewhere.
<row>
<column>
<poster autosize="true" stretch="true"/>
</column>
</row>
<row>
<column halign="left" imgctrlcol="true" width="50">
<prevposterbtn/>
<nextposterbtn/>
<addposterbtn/>
</column>
<column>
<imagelist valign="top" halign="left" cheight="100" cwidth="75" autosize="true" space="10">
<border shape="none"/>
<color>$CCDDEE</color>
</imagelist>
</column>
</row>
An alternative would be to use the screenshots container...
<section>
<color>$000000</color>
<row>
<column>
<screenshots cheight="450" autosize="true">
<border shape="none"/>
</screenshots>
</column>
</row>
</section>
-
Thanks so much for the help. Got it all working and looking great!
I ended up keeping the main poster area and adding a new section below it that displayed the rest of the posters by adding the following (just a slight tweak of your code):
<section>
<color>$FFFAEC</color>
<row>
<column width="100%" halign="left">
<imagelist valign="top" halign="center" cheight="250" cwidth="450" autosize="true" space="5">
<border shape="none" />
</imagelist>
</column>
</row>
</section>
I'm using automatically created screenshots so didn't want to mess with that area.
Thanks again!
-
Thanks again!
You're welcome. And welcome to the Joy of Skinning. It took me so long to get mine 'right', I haven't dared touch it in a few years. ;)