Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.

Note: this post will not display until it's been approved by a moderator.

Name:
Email:
Subject:
Message icon:

Attach:
(Clear Attachment)
(more attachments)
Allowed file types: gif, jpg, png, txt, tpl, lng, ini, pvd, psf, ini, cfg, csv, zip, xml, pas, 7z
Restrictions: 4 per post, maximum total size 1024KB, maximum individual size 1024KB
Note that any files attached will not be displayed until approved by a moderator.
Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:
What is the best video database software?:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: rick.ca
« on: January 24, 2013, 12:26:54 am »

Quote
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. ;)
Posted by: street_samurai
« on: January 23, 2013, 09:10:59 am »

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):

Code: [Select]
  <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!
Posted by: rick.ca
« on: January 23, 2013, 03:53:04 am »

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.

Code: [Select]
<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...

Code: [Select]
<section>
   <color>$000000</color>
<row>
<column>
<screenshots cheight="450" autosize="true">
   <border shape="none"/>
   </screenshots>
   </column>
 </row>
 </section>
Posted 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!
anything