Looking for a skilled coder

  Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
toolpunk Offline
Member
Posts: 91
Joined: May 2010
Reputation: 0
Post: #1
Hi, I'm looking for a skilled coder who's willing to answer me a question every now and then.
I guess I could create a new thread each time I face an issue, but I'd rather keep this place clean.
If anyone's up for it, just drop me a PM.

[Image: guitarhero.png]
Meet Aerith, my first XBMC skin.
find quote
ronie Offline
Team-XBMC Member
Posts: 8,247
Joined: Jan 2009
Reputation: 108
Post: #2
i'd say drop you're questions in here,
that way a lot more people may benefit from the answers you get.

and don't be afraid to open a thread or two,
that's what all do, so why shouldn't you. :-)

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not PM or e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #3
I agree. Open em up. That way, we can all find out the answer.

Speaking of which, Ronie, you cant help me figure out that cdart issue from yesterday?
find quote
ronie Offline
Team-XBMC Member
Posts: 8,247
Joined: Jan 2009
Reputation: 108
Post: #4
to avoid thread jacking, i'll get back at you over there ;-)

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not PM or e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
toolpunk Offline
Member
Posts: 91
Joined: May 2010
Reputation: 0
Post: #5
Alright, I have a wraplist with multiple unfocused movie posters and one focused poster.
Now I wanted to put a glow texture behind/around the selected poster, which was very easy to do.
But I wasn't quite happy with it's size (due to zooming), so I played around with the settings.

When I moved the glow texture up a fair bit I noticed that it got cut off.
Out of curiosity I started messing with the movie poster's "posy" value and could reproduce the same behavior.
The images get cut off where the unfocused posters end.

I thought it might have something to do with either the focusedlayout or itemlayout tags or the wraplist's height tag.
But they're all set to 1080 pixels, so there's no obvious reason for the cropping.

I'd appreciate if someone could tell my why this is happening.

[Image: guitarhero.png]
Meet Aerith, my first XBMC skin.
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,921
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #6
It's getting cut off due to the size of the actual control group -

PHP Code:
<control type="wraplist" id="50">
    <
posx>126</posx>
    <
posy>174</posy>
    <
width>1000</width>
    <
height>924</height

[Image: sig_zps3af3b48e.jpg]
find quote
toolpunk Offline
Member
Posts: 91
Joined: May 2010
Reputation: 0
Post: #7
I had the same thought, but I doubt this is the reason.
Here's my code:

PHP Code:
<control type="wraplist" id="51">
    <
visible>Container.Content(Movies)</visible>
    <
posx>-215</posx>
    <
posy>496</posy>
    <
width>2220</width>
    <
height>1080</height

Could it have something to do with the id?
I'm really new too skinning XBMC and still need to figure out what these numbers stand for, so I wouldn't know.

[Image: guitarhero.png]
Meet Aerith, my first XBMC skin.
find quote
ekim232 Offline
Posting Freak
Posts: 1,204
Joined: Nov 2008
Reputation: 5
Location: Chicago, IL
Post: #8
It is probably the height of the focused item layout. It is probably set lower than the height of the glow.
find quote
ZombieRobot Offline
Fan
Posts: 693
Joined: May 2010
Reputation: 4
Location: Mount Maunganui , New Zealand
Post: #9
ronie Wrote:and don't be afraid to open a thread or two,
that's what all do, so why shouldn't you. :-)
nice rhymes Ronie Laugh

i think ekim232 is right i had the same problem couple weeks ago this was the problem in my case.
find quote
toolpunk Offline
Member
Posts: 91
Joined: May 2010
Reputation: 0
Post: #10
ekim232 Wrote:It is probably the height of the focused item layout. It is probably set lower than the height of the glow.

Nope. Sad
PHP Code:
<focusedlayout height="1080" width="262"

[Image: guitarhero.png]
Meet Aerith, my first XBMC skin.
find quote
Post Reply