• 1
  • 20
  • 21
  • 22(current)
  • 23
  • 24
  • 27
[RELEASE] XeeBo - Dharma
Press 's'.
Reply
I did but I get the old menu with just Quit and Shutdown.
Image
Reply
kri kri Wrote:I did but I get the old menu with just Quit and Shutdown.
You probably installed the old version in the link above.

Hitcher, I am a confused - is the current version of XeeBo tested for Dharma or is it just for folks running nightly builds? Thanks for posting the link for version 1.1.8.
Reply
My repo is for the most up-to-date nightlies only; both official repos (Dharma and Eden-pre) are a bit behind as they're only allowed to be updated once every couple of weeks.

The new Shutdown menu just missed the last official update.
Reply
I couldn't work out what was wrong with Xeebo for the past few days till I came here. The skin auto updated to version 2.x for me aswell. Had to disable your repo.
Reply
same here Hitch...
will always be grateful for XBMC and XBMC.ORG
Reply
I just tried that skin with my touchscreen and i love it 8)
its working awesome and its so fast! Keep the good work up!

i just got 2 bad issues..

-when you open the left menu side i often run directly into favorites and cant exit that without keyboard Sad

-same with the "exit" menu on the lower left, no way to get out Sad

is it possible to get a small "x" icon to close them?
i've searched for a newer build witch could fix those issues but didnt find one.
Reply
DaGround Wrote:I just tried that skin with my touchscreen and i love it 8)
its working awesome and its so fast! Keep the good work up!

i just got 2 bad issues..

-when you open the left menu side i often run directly into favorites and cant exit that without keyboard Sad

-same with the "exit" menu on the lower left, no way to get out Sad

is it possible to get a small "x" icon to close them?
i've searched for a newer build witch could fix those issues but didnt find one.

there is a skin settings to add a "close" button to most dialogues then you can exit favourites etc.

the only thing i have found i can get stuck in, is the photo slideshow
Reply
exobuzz Wrote:there is a skin settings to add a "close" button to most dialogues then you can exit favourites etc.

the only thing i have found i can get stuck in, is the photo slideshow

I'll see what I can do.
Reply
Hitcher Wrote:I'll see what I can do.

wasnt meant as a criticism. I only found that the other day, but I wasn't going to report it as I didn't think it was hugely important and you have done such a wonderful job..

massive kudos to you! Please show me your amazon wishlist ;-)

btw I shipped new images for the O2 joggler just now, http://joggler.exotica.org.uk - using xeebo and a pre-eden build by default. thanks for creating the best skin so far for the little joggler Smile

My next thing is to look at some gesture code that made it into xbmc and make it workable specifically for the joggler so we can do a context menu click more easily.

cheers again
Reply
How's this look?

http://youtu.be/bLZKpV8BWmI
Reply
that looks great!
Reply
Is there any way to get a longer reaction time with the left side menu? In
like 50% of the time thouching the left menu button, i am kinda " doubleclicking". He opens the menu and thinks i touched a second time to get into favorites bevore the bar even appeared. Its awesome that the skin is so fast, but is there a way to disable input to the menu until it has slided out completely?
Reply
lovin' and using the skin ever since it came out, great job Hitch!

1 question tho;
does the skin support Cinema Experience?
and if so, could U or anyone give me heads up on bout what code to add to DialogVideoInfo.xml?`

I added the following code:
Quote:<control type="button" id="13">
<description>Home Cinema Experience</description>
<posx>0</posx>
<posy>0</posy>
<width>33</width>
<height>33</height>
<onclick>Dialog.Close(MovieInformation)</onclick>
<onclick>Playlist.Clear</onclick>
<onclick>RunScript(special://home/addons/script.cinema.experience/addon.py)</onclick>
<font>-</font>
<hitrect x="0" y="0" w="100" h="33" />
</control>

but i'm getting a gray block next to the fanart button now. Think it needs a few adjustments, but im stuck =)

Thanks in advance.
Reply
FREAKJAM Wrote:lovin' and using the skin ever since it came out, great job Hitch!

1 question tho;
does the skin support Cinema Experience?
and if so, could U or anyone give me heads up on bout what code to add to DialogVideoInfo.xml?`

I added the following code:


but i'm getting a gray block next to the fanart button now. Think it needs a few adjustments, but im stuck =)

Thanks in advance.

Try this, under the trailer button code..

Code:
<control type="button" id="13">
                        <description>Home Cinema Experience</description>
                        <visible>system.hasaddon(script.cinema.experience) + Container.Content(movies)</visible>
                        <posx>0</posx>
                        <posy>0</posy>
                        <width>33</width>
                        <height>33</height>
                        <onclick>Dialog.Close(MovieInformation)</onclick>
                        <onclick>Playlist.Clear</onclick>
                        <onclick>RunScript(special://home/addons/script.cinema.experience/addon.py)</onclick>
                        <texturenofocus>button_info_play.png</texturenofocus>
                        <texturefocus>button_info_play_on.png</texturefocus>
                        <font>-</font>
                        <hitrect x="0" y="0" w="100" h="33" />
                    </control>
                    <control type="label" id="41">
                        <description>Home Cinema Experience</description>
                        <visible>system.hasaddon(script.cinema.experience) + Container.Content(movies) + !Control.HasFocus(13)</visible>
                        <posx>0</posx>
                        <posy>0</posy>
                        <width min="0" max="200">auto</width>
                        <height>33</height>
                        <aligny>center</aligny>
                        <label>Cinema</label>
                        <textcolor>grey</textcolor>
                        <font>font21</font>
                    </control>
                    <control type="label" id="42">
                        <description>Home Cinema Experience</description>
                        <visible>system.hasaddon(script.cinema.experience) + Container.Content(movies) + Control.HasFocus(13)</visible>
                        <posx>0</posx>
                        <posy>0</posy>
                        <width min="0" max="200">auto</width>
                        <height>33</height>
                        <aligny>center</aligny>
                        <label>Cinema</label>
                        <textcolor>green</textcolor>
                        <font>font21</font>
                    </control>
                    <control type="image" id="43">
                        <description>left dotted line</description>
                        <visible>system.hasaddon(script.cinema.experience) + Container.Content(movies)</visible>
                        <posx>0</posx>
                        <posy>0</posy>
                        <width>3</width>
                        <height>33</height>
                        <texture>dotted_line_divider.png</texture>
                    </control>

DialogVideoInfo.xml
Reply
  • 1
  • 20
  • 21
  • 22(current)
  • 23
  • 24
  • 27

Logout Mark Read Team Forum Stats Members Help
[RELEASE] XeeBo - Dharma3