[RELEASE] XeeBo - Dharma

  Thread Rating:
  • 3 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Abrasher Offline
Senior Member
Posts: 209
Joined: Jul 2011
Reputation: 1
Post: #321
same here Hitch...
find quote
DaGround Offline
Senior Member
Posts: 125
Joined: Jun 2010
Reputation: 0
Post: #322
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.
find quote
exobuzz Online
Fan
Posts: 530
Joined: Aug 2004
Reputation: 9
Post: #323
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
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,916
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #324
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.

[Image: sig_zps3af3b48e.jpg]
find quote
exobuzz Online
Fan
Posts: 530
Joined: Aug 2004
Reputation: 9
Post: #325
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
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,916
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #326
How's this look?

http://youtu.be/bLZKpV8BWmI

[Image: sig_zps3af3b48e.jpg]
find quote
exobuzz Online
Fan
Posts: 530
Joined: Aug 2004
Reputation: 9
Post: #327
that looks great!
find quote
DaGround Offline
Senior Member
Posts: 125
Joined: Jun 2010
Reputation: 0
Post: #328
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?
find quote
FREAKJAM Offline
Junior Member
Posts: 42
Joined: Aug 2011
Reputation: 0
Post: #329
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.
(This post was last modified: 2011-08-20 11:51 by FREAKJAM.)
find quote
Steveb Offline
Fan
Posts: 305
Joined: Oct 2009
Reputation: 3
Location: Adelaide, Australia
Post: #330
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

"Political Correctness is a doctrine, fostered by a delusional, illogical minority, and rabidly promoted by an unscrupulous mainstream media, which holds forth the proposition that it is entirely possible to pick up a turd by the clean end"
(This post was last modified: 2011-08-21 13:22 by Steveb.)
find quote
Post Reply