Kodi Community Forum
Release Lightbox Skin - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+---- Forum: WIP Skins (https://forum.kodi.tv/forumdisplay.php?fid=160)
+---- Thread: Release Lightbox Skin (/showthread.php?tid=128852)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19


RE: [ALPHA RELEASE] Lightbox Skin - LauDela - 2012-05-15

Hi,
very nice skin, love it !
it give me the taste to try skinning and code python scripts !
So for my first shot, i try to add some informations that Xbmc doesn't show : in artist view i would like to see how many albums have an artist and a preview of these albums.
This is what i get (the artist view isn't very beautiful but i get what i want )
Here are some screenshot :

Image
Image

i can share my script for those who wants to give it a try Smile


RE: [ALPHA RELEASE] Lightbox Skin - Modhack - 2012-05-16

Avec plaisir Smile

Please share , and nice try



RE: [ALPHA RELEASE] Lightbox Skin - Sabish - 2012-05-16

(2012-05-16, 07:46)Modhack Wrote: Avec plaisir Smile

Please share , and nice try

Bien joué mec Wink

IMHO, i think the small artists thumbnails as well as artists logos don't fit in well with the skin general design. I made a quick mockup of the way i see it ... the two images on artists page (big thumbnail + fanart) have always bothered me, i think the available space coud be used more efficiently. Something like this :

Image

@tree_jammer : i don't want to hijack your thread, so you're opinion on this is more than welcomed Wink




RE: [ALPHA RELEASE] Lightbox Skin - jeanwilly - 2012-05-16

This is a verry nice skin!

is must have on XBMC4XBOX to !
Is small and fine!

please give a download link from unpacket media then XBMC4XBOX can not xbt we must have xpr!

please
@Sabish
nevermind, i made the mod myself, wasn't that complicated after all thanks to your source code. If anyon's interested, i can share it...

please share it!


RE: [ALPHA RELEASE] Lightbox Skin - Turrican2 - 2012-05-16

(2012-05-16, 09:23)Sabish Wrote:
(2012-05-16, 07:46)Modhack Wrote: Avec plaisir Smile

Please share , and nice try

Bien joué mec Wink

IMHO, i think the small artists thumbnails as well as artists logos don't fit in well with the skin general design. I made a quick mockup of the way i see it ... the two images on artists page (big thumbnail + fanart) have always bothered me, i think the available space coud be used more efficiently. Something like this :

Image

@tree_jammer : i don't want to hijack your thread, so you're opinion on this is more than welcomed Wink

Very nice idea, fits the skin perfectly.


RE: [ALPHA RELEASE] Lightbox Skin - Lasall - 2012-05-16

Hi, I am a big fan of your skin.

But can you tell me what's wrong with my episode view? It's really hard to navigate through the season only by the plot information. Angel

Image



RE: [ALPHA RELEASE] Lightbox Skin - Sabish - 2012-05-16

(2012-05-16, 12:58)Lasall Wrote: Hi, I am a big fan of your skin.

But can you tell me what's wrong with my episode view? It's really hard to navigate through the season only by the plot information. Angel

Image

Press left and activate the view Wink


RE: [ALPHA RELEASE] Lightbox Skin - Lasall - 2012-05-16

I pressed all direction buttons and nothing happend. But now it works! Thanks for your mental assitance. Big Grin

But am I right that the skin has no "play disc" option in the main menu?


RE: [ALPHA RELEASE] Lightbox Skin - LauDela - 2012-05-17

Here is my script.
It count the albums from an artist and return 9 cd covers
download script
This script is an alpha version Smile

To call this script from the skin :
i'm using the onfocus evenement with a delay of 1 second
PHP Code:
<control type="button" id="60">
                            <
description>Run</description>
                            <
width>1</width>
                            <
height>1</height>
                            <
label>-</label>
                            <
font>-</font>
                               <
onright>701</onright>
                            <
onfocus>XBMC.AlarmClock(RechercheAlbums,XBMC.RunScript(script.nbalbumsartist=$INFO[ListItem.Artist]),00:00:01,silent)</onfocus>
                            <
visible>Container.Content(Artists)</visible>
                        </
control
Then you can show up the count of albums :
PHP Code:
<control type="label">
      <
label>$INFO[Window(Home).Property(albumsnumber)]</label>
                    <
posx>490</posx>
                    <
posy>350</posy>
                    <
height>30</height>
                    <
width>150</width>
                    <
font>Home_numbers</font>
                    <
align>center</align>
          <
visible>Container.Content(Artists)</visible>
        </
control
and the cd covers :
PHP Code:
<control type="image">
                  <
posx>365</posx>
                  <
posy>458</posy>
                  <
width>75</width>
                  <
height>75</height>
                  <
aspectratio>keep</aspectratio>
                  <
texture background="true">$INFO[Window(Home).Property(albums1)]</texture>
                  <
visible>Container.Content(Artists)</visible>
            </
control>
            <
control type="image">
                  <
posx>440</posx>
                  <
posy>458</posy>
                  <
width>75</width>
                  <
height>75</height>
                  <
aspectratio>keep</aspectratio>
                  <
texture background="true">$INFO[Window(Home).Property(albums2)]</texture>
                  <
visible>Container.Content(Artists)</visible>
            </
control

Hope this help
Next : transforms the cd covers to buttons and found another way to launch the script


RE: [ALPHA RELEASE] Lightbox Skin - jeanwilly - 2012-05-17

Have anywhere the source of this nice Skin?

please help !

(media source no xbt )



RE: [ALPHA RELEASE] Lightbox Skin - defluo - 2012-05-17

(2012-05-17, 01:07)LauDela Wrote: Here is my script.
It count the albums from an artist and return 9 cd covers
download script
This script is an alpha version Smile

To call this script from the skin :
i'm using the onfocus evenement with a delay of 1 second
PHP Code:
<control type="button" id="60">
                            <
description>Run</description>
                            <
width>1</width>
                            <
height>1</height>
                            <
label>-</label>
                            <
font>-</font>
                               <
onright>701</onright>
                            <
onfocus>XBMC.AlarmClock(RechercheAlbums,XBMC.RunScript(script.nbalbumsartist=$INFO[ListItem.Artist]),00:00:01,silent)</onfocus>
                            <
visible>Container.Content(Artists)</visible>
                        </
control
Then you can show up the count of albums :
PHP Code:
<control type="label">
      <
label>$INFO[Window(Home).Property(albumsnumber)]</label>
                    <
posx>490</posx>
                    <
posy>350</posy>
                    <
height>30</height>
                    <
width>150</width>
                    <
font>Home_numbers</font>
                    <
align>center</align>
          <
visible>Container.Content(Artists)</visible>
        </
control
and the cd covers :
PHP Code:
<control type="image">
                  <
posx>365</posx>
                  <
posy>458</posy>
                  <
width>75</width>
                  <
height>75</height>
                  <
aspectratio>keep</aspectratio>
                  <
texture background="true">$INFO[Window(Home).Property(albums1)]</texture>
                  <
visible>Container.Content(Artists)</visible>
            </
control>
            <
control type="image">
                  <
posx>440</posx>
                  <
posy>458</posy>
                  <
width>75</width>
                  <
height>75</height>
                  <
aspectratio>keep</aspectratio>
                  <
texture background="true">$INFO[Window(Home).Property(albums2)]</texture>
                  <
visible>Container.Content(Artists)</visible>
            </
control

Hope this help
Next : transforms the cd covers to buttons and found another way to launch the script

can you show some screenshots of this in action please?


RE: [ALPHA RELEASE] Lightbox Skin - reazorFX - 2012-05-17

I've created an overlay for the episodes. copy of the order in overlay in /media, and the file-exchange Viewtype_Episodes.xml in /720p.


Image


https://rapidshare.com/files/351123329/Overlay.zip



RE: [ALPHA RELEASE] Lightbox Skin - Japaja - 2012-05-17

Thanks reazorFX it fits great and was very much needed. Smile


RE: [ALPHA RELEASE] Lightbox Skin - LauDela - 2012-05-17

(2012-05-17, 11:22)defluo Wrote:
(2012-05-17, 01:07)LauDela Wrote: Here is my script.
It count the albums from an artist and return 9 cd covers
download script
This script is an alpha version Smile

To call this script from the skin :
i'm using the onfocus evenement with a delay of 1 second
PHP Code:
<control type="button" id="60">
                            <
description>Run</description>
                            <
width>1</width>
                            <
height>1</height>
                            <
label>-</label>
                            <
font>-</font>
                               <
onright>701</onright>
                            <
onfocus>XBMC.AlarmClock(RechercheAlbums,XBMC.RunScript(script.nbalbumsartist=$INFO[ListItem.Artist]),00:00:01,silent)</onfocus>
                            <
visible>Container.Content(Artists)</visible>
                        </
control
Then you can show up the count of albums :
PHP Code:
<control type="label">
      <
label>$INFO[Window(Home).Property(albumsnumber)]</label>
                    <
posx>490</posx>
                    <
posy>350</posy>
                    <
height>30</height>
                    <
width>150</width>
                    <
font>Home_numbers</font>
                    <
align>center</align>
          <
visible>Container.Content(Artists)</visible>
        </
control
and the cd covers :
PHP Code:
<control type="image">
                  <
posx>365</posx>
                  <
posy>458</posy>
                  <
width>75</width>
                  <
height>75</height>
                  <
aspectratio>keep</aspectratio>
                  <
texture background="true">$INFO[Window(Home).Property(albums1)]</texture>
                  <
visible>Container.Content(Artists)</visible>
            </
control>
            <
control type="image">
                  <
posx>440</posx>
                  <
posy>458</posy>
                  <
width>75</width>
                  <
height>75</height>
                  <
aspectratio>keep</aspectratio>
                  <
texture background="true">$INFO[Window(Home).Property(albums2)]</texture>
                  <
visible>Container.Content(Artists)</visible>
            </
control

Hope this help
Next : transforms the cd covers to buttons and found another way to launch the script

can you show some screenshots of this in action please?

defluo, read my first post on this thread (p16), you will see some screenshots



RE: [ALPHA RELEASE] Lightbox Skin - reazorFX - 2012-05-17

again a little mod by me

I've added the missing video button in the home menu. this is especially important for those who also have video addons.

Image

https://rapidshare.com/files/3678444206/lightbox.home.zip