Some music posters for Aeon

  Thread Rating:
  • 2 Votes - 4.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
tash Offline
Junior Member
Posts: 47
Joined: Apr 2009
Reputation: 0
Post: #1
Some music posters for Aeon (50 files)
http://www.mediafire.com/?2jxwtgdmdg1
Who knows how to have them assigned by genre?
Preview here:
[Image: fp9u3om37ccdp4y0oep8.png]
[Image: npwsehy7itwrdqmms8j6.png]
[Image: lif1b69kvgbwl1fguaq.png]




And some for movies here (44 files):
http://www.mediafire.com/?j23z2cbjmky
to match the design...
Preview here:
[Image: bngxvnsracraah4t51v.png]
[Image: z4etccyaj1dw7ykero.png]
[Image: nzoj0078leiq5rmx4.png]


Regards,
Tash
(This post was last modified: 2009-05-26 17:09 by tash.)
find quote
joebrady Offline
Team-XBMC Forum Moderator
Posts: 1,625
Joined: Apr 2007
Reputation: 6
Location: Floyds Knobs, IN
Post: #2
Can we get a preview before downloading?

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first
find quote
tash Offline
Junior Member
Posts: 47
Joined: Apr 2009
Reputation: 0
Post: #3
http://shareimage.org/images/wf5xrdngx070dh52v4dz.png
http://shareimage.org/images/tho16myoezxb85qu42nn.png
http://shareimage.org/images/2t1pbk01095rpnk8hmos.png
http://shareimage.org/images/92hb5r599phaj06mwa0.png
http://shareimage.org/images/cray8bx41uryfhy4bjau.png
(This post was last modified: 2009-04-24 18:00 by tash.)
find quote
tash Offline
Junior Member
Posts: 47
Joined: Apr 2009
Reputation: 0
Post: #4
http://shareimage.org/images/gguo39v5r52yhmrbossv.png
http://shareimage.org/images/yhsuy31yxvxax26ye2jy.png
http://shareimage.org/images/uq3tschemokx2xvet22w.png
http://shareimage.org/images/bedlms0wue623bxc0l4.png
http://shareimage.org/images/isp51rtwktz9gjo1w8f.png
find quote
joebrady Offline
Team-XBMC Forum Moderator
Posts: 1,625
Joined: Apr 2007
Reputation: 6
Location: Floyds Knobs, IN
Post: #5
I like them. Especially the Alternative one.

Atmospheric instead of Atmosferic?

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first
find quote
tash Offline
Junior Member
Posts: 47
Joined: Apr 2009
Reputation: 0
Post: #6
joebrady Wrote:I like them. Especially the Alternative one.

Atmospheric instead of Atmosferic?

Here you go...

http://www.mediafire.com/?mmlhm0mzl0m
find quote
tash Offline
Junior Member
Posts: 47
Joined: Apr 2009
Reputation: 0
Post: #7
I can add some other... any feedback is welcome
find quote
ronie Offline
Team-XBMC Member
Posts: 8,263
Joined: Jan 2009
Reputation: 108
Post: #8
These are great! I really like 'm a lot.
Would be a tough task to create a full set, if even possible.
My htpc lists about 60 genres, so that would be a hell of a job.

Any additions to this set are of course very welcome. You might consider posting the source, so people can create their own or assist you in completing the set as much as possible.

I'm not using Aeon, but this is the code to get it working in PM3.HD:
Code:
<control type="image">
    <posx>0</posx>
    <posy>0</posy>
    <width>400</width>
    <height>510</height>
    <texture>/path/to/icons/$INFO[Listitem.label,,.png]</texture>
    <visible>Container.Content(Genres) + Window.IsVisible(MusicLibrary)</visible>
</control>

As far as i know this code should also work for other skins.
find quote
tjost Offline
Member
Posts: 66
Joined: Feb 2008
Reputation: -10
Post: #9
in wich xml do i have to put it in?
find quote
ronie Offline
Team-XBMC Member
Posts: 8,263
Joined: Jan 2009
Reputation: 108
Post: #10
tjost Wrote:in wich xml do i have to put it in?

In ViewsFileMode.xml, on line 201 you'll find this code:

Code:
<control type="image">
    <posx>0</posx>
    <posy>0</posy>
    <width>400</width>
    <height>510</height>
    <aspectratio>keep</aspectratio>
    <fadetime>IconCrossfadeTime</fadetime>
    <texture>$INFO[ListItem.Icon]</texture>
</control>


Change it to this:

Code:
<control type="image">
    <posx>0</posx>
    <posy>0</posy>
    <width>400</width>
    <height>510</height>
    <aspectratio>keep</aspectratio>
    <fadetime>IconCrossfadeTime</fadetime>
    <texture>$INFO[ListItem.Icon]</texture>
    [b]<visible>![Container.Content(Genres) + Window.IsVisible(MusicLibrary)]</visible>[/b]
</control>
[b]<control type="image">
    <posx>0</posx>
    <posy>55</posy>
    <width>400</width>
    <height>400</height>
    <texture>/path/to/icons/$INFO[Listitem.label,,.png]</texture>
    <visible>Container.Content(Genres) + Window.IsVisible(MusicLibrary)</visible>
</control>[/b]

Of course, change '/path/to/icons/' to the path where you've stored the icons.
find quote
Post Reply