• 1
  • 9
  • 10
  • 11(current)
  • 12
  • 13
  • 19
Release Lightbox Skin
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
Reply
Avec plaisir Smile

Please share , and nice try
xbmc.fr

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
(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

My reFocus mods : reAlaska & reAlaska (Dark)
Reply
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!
Reply
(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.
Reply
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
Reply
(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
My reFocus mods : reAlaska & reAlaska (Dark)
Reply
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?
Reply
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
Reply
Have anywhere the source of this nice Skin?

please help !

(media source no xbt )
Reply
(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?
TV LG 50PJ350 50 inch HDTV
Receiver Sony STRDH520 7.1
HTPC 1 Custom built 8GB RAM 64GB SSD 250GB SATA Win 8 x64, VRC 1100 remote, AMBX lighting HTPC 2 TV LG 32LK330U 32 inch HDTV HTPC Raspberry Pi 2 OpenELEC
Server HP Microserver Gen 8 10GB RAM, 10.25TB total storage, Sickbeard, SABnzbd+, CouchPotato
Kodi Jarvis, Aeon MQ 6
Reply
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
Reply
Thanks reazorFX it fits great and was very much needed. Smile
Reply
(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
Reply
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/...x.home.zip
Reply
  • 1
  • 9
  • 10
  • 11(current)
  • 12
  • 13
  • 19

Logout Mark Read Team Forum Stats Members Help
Lightbox Skin20