Kodi Community Forum
Xperience Special Announcement - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Xperience More (https://forum.kodi.tv/forumdisplay.php?fid=128)
+----- Thread: Xperience Special Announcement (/showthread.php?tid=64080)



- greatant1337 - 2009-12-28

Great skin, guys.
Is it possible to get a link to the smaller Xbox textures you made, Rocky5?


DialogFullScreenInfo.xml - Pr.Sinister - 2009-12-28

Hi,

When pressing Info while playing a movie, i think it should show the seekbar and
extra stuff but not the full screen you currently have.

The one that shows up now is the same that shows up when pressing info on
an item while nothing is playing.

-Pr.


- wimpy - 2009-12-28

Pr.Sinister Wrote:Hi,

When pressing Info while playing a movie, i think it should show the seekbar and
extra stuff but not the full screen you currently have.

The one that shows up now is the same that shows up when pressing info on
an item while nothing is playing.

-Pr.

It has already been requested Smile +1 :>


- Rocky5 - 2009-12-28

wimpy Wrote:Request regarding "Enable recently added on home":
If possible add additional option to update recently list after doing a scan/update library instead of just everytime xbmc starts or everytime entering Home screen.

there are two options first one is to only update when XBMC starts (xbox users) and then there is the other option to update the recently added on the press of Up so when you go to view it it will update then show you the movies thus not needing anything else.

basically it will only update if you want it to so that there is no pausing or anything that would interrupt the flow of the skin.

you want to enable option 2

greatant1337 Wrote:Great skin, guys.
Is it possible to get a link to the smaller Xbox textures you made, Rocky5?

paul will most likely do this for us as the xprs are unprotected.


- wimpy - 2009-12-28

Rocky5 Wrote:there are two options first one is to only update when XBMC starts (xbox users) and then there is the other option to update the recently added on the press of Up so when you go to view it it will update then show you the movies thus not needing anything else.

basically it will only update if you want it to so that there is no pausing or anything that would interrupt the flow of the skin.

you want to enable option 2

Ah nice! Smile Excellent


DialogSeekBar.xml - Pr.Sinister - 2009-12-28

Could you have an option of moving the seekbar to the bottom of the screen
instead of having it on top?

Thanks!

-Pr.


Uppercase RSS - Pr.Sinister - 2009-12-28

I usually am not a fan of all uppercase but since everything on the homepage is
in uppercase, i think making the RSS feed uppercase will make it blend better
with the look of the skin...

Purely a matter of taste but it is just MHO...

-Pr.


- paularms - 2009-12-28

Pr.Sinister Wrote:Could you have an option of moving the seekbar to the bottom of the screen instead of having it on top?

The seekbar on top is so much better from a usability standpoint, for those times when you're watching something with subtitles. I much prefer having it at the top of the screen!


- mcborzu - 2009-12-28

Sickest animations in the business...so smooth, so original. Hard to give out the "best skin ever" award but "Most attention to detail" is all your guys Smile

Love the Poster view, really wanted that one when the Alpha was released.

***EDIT***

2200 lines of code just for Poster view, WOW!


- Rocky5 - 2009-12-28

paularms Wrote:The seekbar on top is so much better from a usability standpoint, for those times when you're watching something with subtitles. I much prefer having it at the top of the screen!

exactly there in nothing stopping people modding the skin i will only add stuff that will be useful having the dialogseek at the top keeps it out of the way from everything.

if you want it at the bottom change this code in DialogSeekBar.xml

PHP Code:
                <control type="group">
                        <include>
NowPlayingFullscreen</include>
                        <!-- 
Main Part -->
                        <
control type="image">
                                <!-- 
Back plate -->
                                <
posx>0</posx>
                                <
posy>0</posy>
                                <
width>1280</width>
                                <
height>50</height>
                                <
texture flipy="true">osd/fullscreen/osd-back.png</texture>
                        <!--    <
animation effect="zoom" start="0,0,1280,50" end="0,0,1280,80" time="100" tween="sine" condition="Player.Paused | Player.Forwarding | Player.Rewinding">Conditional</animation> -->
                                <
aspectratio>stretch</aspectratio>
                        </
control>

to this

                
<control type="group">
                        <
posy>670</posy>
                        <include>
NowPlayingFullscreen</include>
                        <!-- 
Main Part -->
                        <
control type="image">
                                <!-- 
Back plate -->
                                <
posx>0</posx>
                                <
posy>0</posy>
                                <
width>1280</width>
                                <
height>50</height>
                                <
texture flipy="false">osd/fullscreen/osd-back.png</texture>
                        <!--    <
animation effect="zoom" start="0,0,1280,50" end="0,0,1280,80" time="100" tween="sine" condition="Player.Paused | Player.Forwarding | Player.Rewinding">Conditional</animation> -->
                                <
aspectratio>stretch</aspectratio>
                        </
control

as for fullscreen info when a file is playing this will stay that way the team like the look of it but again feel free to mod it i left the old code in there just enable.

change this in VideoOSD.xml

PHP Code:
                    <control type="button" id="10">
                            <
description>Info</description>
                            <
posx>760</posx>
                            <
posy>20</posy>
                            <!--
label>Info</label-->
                            <
height>50</height>
                            <
width>50</width>
                            <
texturefocus>osd/fullscreen/info-fo.png</texturefocus>
                            <
texturenofocus>osd/fullscreen/info-nofo.png</texturenofocus>
                            <
onclick>ActivateWindow(142)</onclick>
                            <
onup>20</onup>
                            <
ondown>-</ondown>
                            <
onleft>9</onleft>
                            <
onright>12</onright>
                            <
visible>!Control.HasFocus(9999)</visible>
                    </
control>
    <!-- 
Fake Button so info will show (saves using skin toggle settings) -->
                    <
control type="button." id="9999">
                            
to this

                    
<control type="button" id="10">
                            <
description>Info</description>
                            <
posx>760</posx>
                            <
posy>20</posy>
                            <!--
label>Info</label-->
                            <
height>50</height>
                            <
width>50</width>
                            <
texturefocus>osd/fullscreen/info-fo.png</texturefocus>
                            <
texturenofocus>osd/fullscreen/info-nofo.png</texturenofocus>
                            <
onclick>SetFocus(9999)</onclick>
                            <
onup>20</onup>
                            <
ondown>-</ondown>
                            <
onleft>9</onleft>
                            <
onright>12</onright>
                            <
visible>!Control.HasFocus(9999)</visible>
                    </
control>
    <!-- 
Fake Button so info will show (saves using skin toggle settings) -->
                    <
control type="button" id="9999"

you will also need to move up the info code from line 376 to line 717 move this to line 5


- bradsjm - 2009-12-28

It is just beautiful! Smile


- mcborzu - 2009-12-28

My favorite thing about Xperience was the Retro style from the Alpha, love to get that added...


- z][ggy - 2009-12-28

What you guys have done coding with xbmc is fantastic and opened the door to a whole new level of skins, but to me the look of the skin is too much like the 360 dash for my liking well more or less a direct copy. The fact that you have done it is still great but the look is not for me same as mc360.

I would love to see the animation power used here and a totally original skin made from it.

still Kudos guys but in a nutshell if i wanted this i would just boot up my 360 Tongue



P.S I know it's beta and when the mods come out and extra views come in the future this skin could have a very long lifespan

Ok guys I will take a portion of this back lol it's growing on me fast lol


Translations - Arcanthur - 2009-12-28

Post your strings.xml files here and we will add them


- XBMCG33K - 2009-12-28

z][ggy Xperience WAS INSPIRED by the NXE dash for the 360. Nothings going to change that. So if it isn't to your liking there are several others I am quite sure you can use.