Group of buttons doesn't show
#1
I have a group of buttons that are not showing. I can't tell if they are not positioning correctly anymore or what.

I know there was a change recently, but I've played around with adding x,y,w and h to the group with no luck.

Any suggestions?

Link to the full file.
http://xbmc-scripting.googlecode.com/svn...ttings.xml

Here's the revelant code: ... == other controls
Code:
<coordinates>
  <system>1</system>
  <posx>162</posx>
  <posy>96</posy>
</coordinates>

...
        <control type="group" id="2000">
            <animation effect="fade" time="200">WindowOpen</animation>
            <animation effect="fade" time="200">WindowClose</animation>
            <control type="button" id="250">
                <description>Ok Button</description>
                <posx>340</posx>
                <posy>60</posy>
                <width>90</width>
                <height>32</height>
                <align>center</align>
                <aligny>center</aligny>
                <label>-</label>
                <font>font10</font>
                <textcolor>ffffffff</textcolor>
                <disabledcolor>60ffffff</disabledcolor>
                <textoffsetx>17</textoffsetx>
                <texturenofocus>default-keyboard-btn.png</texturenofocus>
                <texturefocus>default-keyboard-btn-focus.png</texturefocus>
                <onleft>9000</onleft>
                <onright>9000</onright>
                <onup>253</onup>
                <ondown>251</ondown>
            </control>
...
        </control>
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#2
maybe it's because you are putting several control groups inside a grouplist. Try just using the control groups without the grouplist.
Reply
#3
It's rendering offscreen (y coord is 1200 or so). Not sure why yet.

EDIT: Ok, I know the reason. Am researching a solution.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not 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.


Image
Reply
#4
Fixed in revision 9346.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not 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.


Image
Reply
#5
Ah it's because I have those dummy controls in there hidden. Nice find.

Thank you Smile
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply

Logout Mark Read Team Forum Stats Members Help
Group of buttons doesn't show0