NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) Burndvdx2 and Skiptool v
« Previous 1 2 3
Out of alignment

 
  • 0 Vote(s) - 0 Average
Out of alignment
Sam
Offline

Member

Posts: 94
Threads: 12
Joined: Dec 2007
#1
2008-01-15, 01:32 AM
I cant find the right values in the xml to change the positions of the background frames. As you can see from this image they are all a bit wonky on the page for community 3 and my specific choices. I need to change the dvd label and main 3 boxes to be more in line on the page and the same width, and the menu to be a little lower on the left side.
pastro
Offline

Posting Freak

Posts: 1,885
Threads: 128
Joined: Jul 2006
#2
2008-01-15, 02:30 AM
The dvdlabel placement is called labeledtextbox.
Here is the skinhelper line for labeledtextbox

Code:
txtLabeledTextBox = new WizUiTextBox(skinHelper, "LabeledTextBox", args, "LabeledTextBoxImageNormal", "LabeledTextBoxImageSelected");

The Listboxes placements are listbox1 and listbox2.
Here is the skinhelper line for listbox1

Code:
lstMyList1 = new WizUiList(skinHelper, "ListBox1", this, null,
"ListBox1ListBackground", "ListBox1ListNormal", "ListBox1ListSelected", "ListBox1ListSelectedInactive");


and for listbox2

Code:
lstMyList2 = new WizUiList(skinHelper, "ListBox2", this, null,
"ListBox1ListBackground", "ListBox2ListNormal", "ListBox2ListSelected", "ListBox2ListSelectedInactive");
[SIZE=2]
[/SIZE]
GBpvr PC: Intel Celeron 1.8 Ghz. 768 Mb WinXp Home Sp2
Video: Diamond 128 Mb 9550
Capture Cards: PVR-150 & PVR-150 MCE w/fm + 2x MVP
Author of: BurnDVDX2 and Skiptool
Sam
Offline

Member

Posts: 94
Threads: 12
Joined: Dec 2007
#3
2008-01-16, 08:07 PM
My burndvdx2 xml file in skin2\community 3 folder looks little different. It is from the 1.0.1.1 installer. I've attached it incase you can take a look. I can change the two box sizes as you advised looking at the similar names. I can't however change the position and size of the details box at bottom and the second box has the white rows sticking out and seem to change size with the box. I want the white selection bits inside the box.
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#4
2008-01-16, 09:27 PM
Sam, I noticed this as well testing out a new theme. I'll try to get that fixed for the next release. The problem I have is that I use the BlueMCE2 theme to skin for, but it doesn't use list backgrounds. I will be using a new default theme shortly and it will make it more obvious that there are these sorts of problems.

Those lines of code shown above are not from the skin.xml file directly.


I believe the locations are controlled from here.
Code:
<Placement name="ListBox1"          loc="30.0,18.0"  size="67.0,6.5"  rows="4" offset="7.0"/>
        <Placement name="ListBox2"          loc="30.0,52.0"  size="67.0,7.5"  rows="3" offset="8.0"/>

Here is where those background frames are drawn from.

Code:
<CompositeImage name="ListBox1ListBackground" size="20.0,25.0" >
            <DrawCommonImage name="TextBackground"/>
        </CompositeImage>

I could be wrong on something, but if I beat you to the fix I'll post it here.
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#5
2008-01-17, 03:09 AM
What I had to do is change out the way those images were drawn so they could be scaled down. (DrawCommonImage is always shown at 100%)

I think this might cut it for the width. I still need to tweak the height.
Any other graphical problems, please post some more screen shots (you can do so in the Community thread so this doesn't get too cluttered). I don't run this plugin so I might not catch everything on all the sub-screens and menus.

Will get more progress later in the week, but you can try this.
[ATTACHMENT NOT FOUND]
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
pastro
Offline

Posting Freak

Posts: 1,885
Threads: 128
Joined: Jul 2006
#6
2008-01-17, 05:01 AM
Fatman_do Wrote:Sam, I noticed this as well testing out a new theme. I'll try to get that fixed for the next release. The problem I have is that I use the BlueMCE2 theme to skin for, but it doesn't use list backgrounds. I will be using a new default theme shortly and it will make it more obvious that there are these sorts of problems.

Those lines of code shown above are not from the skin.xml file directly.


I believe the locations are controlled from here.
Code:
<Placement name="ListBox1"          loc="30.0,18.0"  size="67.0,6.5"  rows="4" offset="7.0"/>
        <Placement name="ListBox2"          loc="30.0,52.0"  size="67.0,7.5"  rows="3" offset="8.0"/>

Here is where those background frames are drawn from.

Code:
<CompositeImage name="ListBox1ListBackground" size="20.0,25.0" >
            <DrawCommonImage name="TextBackground"/>
        </CompositeImage>

I could be wrong on something, but if I beat you to the fix I'll post it here.

Like Fatman said those aren't the lines from the skin file. They are the lines of code from the plugin that specifies what placements are called out in the skin file. Sorry I didn't make that clear.
GBpvr PC: Intel Celeron 1.8 Ghz. 768 Mb WinXp Home Sp2
Video: Diamond 128 Mb 9550
Capture Cards: PVR-150 & PVR-150 MCE w/fm + 2x MVP
Author of: BurnDVDX2 and Skiptool
Sam
Offline

Member

Posts: 94
Threads: 12
Joined: Dec 2007
#7
2008-01-22, 01:19 PM
[HTML]They are the lines of code from the plugin that specifies what placements are called out in the skin file.[/HTML]

I'm way more stupid to understand that line. I just know that for the community skin3 folder, if I edit the skin.xml in the subdirectory for the plugin I'm using sometimes things change position. There is no standard names for the images and frames so it's hit and miss.

Please can you tell me what directory I should look in and what file I should edit to make those selection boxes in burndvdx2 get back inside the frame and the last box get back in line with others above?

FYI, I only use community3 now and pvrx2 with longhorn backdrop and green orb task icons.
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#8
2008-01-22, 10:31 PM
Sam, try the xml file I posted a few message up. The height of the list items are not controlled enough to make it look much better, but I did change the length and offset.
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
Sam
Offline

Member

Posts: 94
Threads: 12
Joined: Dec 2007
#9
2008-01-26, 08:24 PM
Thanks, it looks a lot better. The bottom box is still not lining up, and the box corners are not quite round (maybe cos of 16:9 TV), but the 4 selection lines are inside the frame now. I move the left menu down a little.
Sam
Offline

Member

Posts: 94
Threads: 12
Joined: Dec 2007
#10
2008-01-26, 08:26 PM
Here's how it looks now.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode