New release available

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
JDizzy Offline
Fan
Posts: 330
Joined: Apr 2009
Reputation: 0
Location: Californication
Post: #11
Tried and liking the skin!

A few things:
Home screen, when you have horizontal menu/Lower option, the music playing info is hovering up in left/middle of screen. Maybe move it down to lower left, right above menu. A little less opacity might be nice too with the music playing info on Home screen also or maybe fade the info box out on right side. (similar to way the select highlighter looks in rightlist view screens).

Would you consider adding the TV Tunes and Movie poster (similar to clearart) to movie pause screen?

Also consider the option to hide Settings on Home screen. (and add Settings to Shut-off/Reboot popup screen)

I also see in another thread someone suggested rotating artist extrafanart in music visualization. That would be a nice touch, especially if you could put music visualizations on top of them! I thought someone mentioned the Aeon skin had that option and I think Shade has current artist fanart behind visualizations. It is a nice effect!

Thanks!
***Oops! Just realized there was a 'Suggestions' thread. Move this if you can.
(This post was last modified: 2010-12-09 17:40 by JDizzy.)
find quote
Malexx Offline
Fan
Posts: 330
Joined: Nov 2009
Reputation: 0
Location: Germany
Post: #12
edited
(This post was last modified: 2010-12-13 22:52 by Malexx.)
find quote
dave77 Offline
Member
Posts: 77
Joined: Mar 2010
Reputation: 0
Post: #13
Just upgraded to this version. My links on the homepage have moved now. Settings is now above my custom links, is this a bug?
old
Movie, TV Shows, iPlayer, Apple Trailers, Settings
v2.0
Movie, TV Shows, Settings, iPlayer, Apple Trailers
find quote
Malexx Offline
Fan
Posts: 330
Joined: Nov 2009
Reputation: 0
Location: Germany
Post: #14
dont know id this has reporetd before,but if you give the Items on the Homepage(Movies,TV etc)MultiImage Backgrounds,they dont work.
They show in every places TV Backgrounds and sometimes Movie Backgrounds.
find quote
Crookas Offline
Skilled Skinner
Posts: 104
Joined: Jan 2010
Reputation: 2
Location: Adelaide, Australia
Post: #15
Malexx Wrote:dont know id this has reporetd before,but if you give the Items on the Homepage(Movies,TV etc)MultiImage Backgrounds,they dont work.
They show in every places TV Backgrounds and sometimes Movie Backgrounds.


Works fine when I test it - I go to skin settings-background customizer-and then choose a folder of images for that section.
find quote
RockDawg Offline
Posting Freak
Posts: 1,259
Joined: Jun 2005
Reputation: 0
Post: #16
Again, I love this skin! One small thing I've noticed is that the item count and page number info in the upper right is dim and next to impossible to read. It's like the gradient is overlayed on top of it.
find quote
ZexisStryfe Offline
Member
Posts: 90
Joined: Dec 2010
Reputation: 2
Post: #17
Just a few notes with the horizontal menu/lower enabled-

1.) the clock and the weather information in the upper left corner appear on top of the XBMC overlay. Could this either be moved down or have the xbmc overlay removed?

2.) With this setup there is no way to access the power/favorites buttons on the home screen. As a matter of fact the horizonal menu actually overlays them. It would be nice if you raise the lower menu a bit so those icons were still visible and for a DOWN button press move the active cursor to those icons.

[Image: logo_zpsd757bd36.png]
Check out my new skin- metroTV (XBMC Thread) (Project Site)
find quote
RockDawg Offline
Posting Freak
Posts: 1,259
Joined: Jun 2005
Reputation: 0
Post: #18
RockDawg Wrote:Again, I love this skin! One small thing I've noticed is that the item count and page number info in the upper right is dim and next to impossible to read. It's like the gradient is overlayed on top of it.

Here are some pics top show what I mean. Even some guidance on editing an xml would be great. As you'll notice, the TV view is the darkest and almost impossible to read.

http://www.flickr.com/photos/8244180@N08/5308000359/

http://www.flickr.com/photos/8244180@N08/5308000541/

Sorry for the links but Flickr and Box.net apparently no longer provide direct links to files so this is the best I can do at the moment.
(This post was last modified: 2010-12-31 05:16 by RockDawg.)
find quote
Greg. Offline
Member+
Posts: 82
Joined: Jul 2009
Reputation: 0
Location: new zealand
Post: #19
RockDawg Wrote:Again, I love this skin! One small thing I've noticed is that the item count and page number info in the upper right is dim and next to impossible to read. It's like the gradient is overlayed on top of it.

+1 from me on both counts.

Home of NFO2DIR2, your Artwork Downloader Companion. THE Movie Structure Converter and Auto File mover, thats under 10k!
Now with stacked file processor. Gets you ready for multiple fanarts without you lifting a finger! d/l free from http://tinyurl.com/ckwtu3y
find quote
Malexx Offline
Fan
Posts: 330
Joined: Nov 2009
Reputation: 0
Location: Germany
Post: #20
I found something but iam not sure if its only at my system or not.

In Cirrus 2.0
when entering Episodelevel in Rightlistview i always get the fallback Image for the Logo instead of the Logo in the right down corner.
Code:
<control type="largeimage" id="7916">
                    <posx>370r</posx>
                    <posy>30</posy>
                    <width>335</width>
                    <height>100</height>
                    <texture fallback="notvshowlogo.png">$INFO[ListItem.path]logo.png</texture>
                    <fadetime>100</fadetime>
                    <aspectratio scalediffuse="false">keep</aspectratio>
                    <visible>!substring(listitem.path,$LOCALIZE[20373])</visible>
                </control>
                <control type="largeimage" id="7917">
                    <posx>370r</posx>
                    <posy>30</posy>
                    <width>335</width>
                    <height>100</height>
                    <texture fallback="notvshowlogo.png">$INFO[ListItem.path]../logo.png</texture>
                    <fadetime>100</fadetime>
                    <aspectratio scalediffuse="false">keep</aspectratio>
                    <visible>substring(listitem.path,$LOCALIZE[20373])</visible>

when changing to this code again it works like it should
Code:
<control type="largeimage" id="7916">
                    <posx>370r</posx>
                    <posy>30</posy>
                    <width>335</width>
                    <height>100</height>
                    <texture fallback="notvshowlogo.png">$INFO[ListItem.path]logo.png</texture>
                    <fadetime>100</fadetime>
                    <aspectratio scalediffuse="false">keep</aspectratio>
                    <visible>!substring(listitem.path,season)</visible>  
                </control>
                <control type="largeimage" id="7917">
                    <posx>370r</posx>
                    <posy>30</posy>
                    <width>335</width>
                    <height>100</height>
                    <texture>$INFO[ListItem.path]../logo.png</texture>
                    <fadetime>100</fadetime>
                    <aspectratio scalediffuse="false">keep</aspectratio>
                    <visible></visible>

Anybody else with the same problem?
And $LOCALIZE[20373] stands for what?i searched but couldnt figure it out??
(This post was last modified: 2011-01-02 02:37 by Malexx.)
find quote