[THEME] Music Layouts (clearart, cdart, bio, ect.) for MP 1.3 Beta - v3.0 - ALPHA TEST VERSION (4 Viewers)

IchBinsShort

Portal Pro
January 3, 2008
683
54
Home Country
Germany Germany
AW: [MOD]vMusic Layouts for 1.2RC - v2.0 - clearart, cdArt, music tags and more

I have done this, but it don't works. The Back Key and Info Key works (Menu with Love, ban etc.) well.

But I don't get to the Menu on the right side (OnlineRadio, Lyrics, Playlist etc). With the mouse I can go to this Menu, but not with the remote or Keyboard. In the Log there are a few Missing controls.

And when I change back to thze default Plaqing Now Screen the keys works. I have attached the logs
 

Mr. V

Portal Pro
September 15, 2007
150
164
Brisbane
Home Country
Re: AW: [MOD]vMusic Layouts for 1.2RC - v2.0 - clearart, cdArt, music tags and more

I have done this, but it don't works. The Back Key and Info Key works (Menu with Love, ban etc.) well.

But I don't get to the Menu on the right side (OnlineRadio, Lyrics, Playlist etc). With the mouse I can go to this Menu, but not with the remote or Keyboard. In the Log there are a few Missing controls.

And when I change back to thze default Plaqing Now Screen the keys works. I have attached the logs

Ill take a look later on. Off to work now.
 

IchBinsShort

Portal Pro
January 3, 2008
683
54
Home Country
Germany Germany
AW: [MOD]vMusic Layouts for 1.2RC - v2.0 - clearart, cdArt, music tags and more

Thank you and in Germany it's time to sleep ;-)
 

Mr. V

Portal Pro
September 15, 2007
150
164
Brisbane
Home Country
Re: AW: [MOD]vMusic Layouts for 1.2RC - v2.0 - clearart, cdArt, music tags and more

Any News ?

Still cant find the issue. only had a chance for a quick look. i have realised i did remove a number un-used controls from the nowplaying.xml. So i didnt' relize MP would thow error when these were missing.

But even with these error it still works fine for me.

So please bear with me, as i have not done much bug finding with log files.

I did notice that two plugins of yours seem not to be working properly, music trivia and audio scrobbler, perhaps disable these and let me know the results.

I will fix the skin errors but may not be done till some time next week as i am limited by time at the moment.
 

robbo100

Retired Team Member
  • Premium Supporter
  • May 5, 2009
    1,291
    308
    UK
    Home Country
    United Kingdom United Kingdom
    Re: [MOD]vMusic Layouts for 1.2RC - v2.0 - clearart, cdArt, music tags and more

    This plugin is really nice, it brings the music section to life (also thanks to Jameson and others who have allowed all this to be possible.

    Thanks

    Robbo100
     

    Mr. V

    Portal Pro
    September 15, 2007
    150
    164
    Brisbane
    Home Country
    Re: [MOD]vMusic Layouts for 1.2RC - v2.0 - clearart, cdArt, music tags and more

    Ok. If done some more digging into the now playing screen.

    Looks like ive made some errors with <onleft> <onright> ect and id's.

    Will fix this over the weekend.

    It should solve any issues people are having. Should have it ready over the weekend.
     

    Pog

    Retired Team Member
  • Premium Supporter
  • September 7, 2009
    401
    315
    Wicklow
    Home Country
    Ireland Ireland
    Re: [MOD]vMusic Layouts for 1.2RC - v2.0 - clearart, cdArt, music tags and more

    Hi,

    I've made a fix for Album star ratings. AMG returns ratings from 1 to 9 which is a bit of a problem for the way MP tries to pick a star texture.

    What I've done is create a series of star files for this rating, so 5 stars incrementing in half stars...
    (0=0 1=1 2=1.5 3=2 4=2.5 5=3 6=3.5 7=4 8=4.5 9=5)

    I've included the png files for these and the code that's needed:

    Code:
        <control>
          <id>0</id>
          <description>Album Star Rating</description>
          <type>image</type>
          <visible>[facadeview.list|facadeview.album]+string.equals(#AlbumInfo.Rating)+string.equals(#itemtype,#(L(132)))</visible>
          <posX>330</posX>
          <posY>300</posY>
          <width>120</width>
          <height>24</height>
          <texture>music-review-star#AlbumInfo.Rating.png</texture>
          <animation effect="fade" time="250" delay="0">WindowClose</animation>
          <animation effect="fade" time="250" delay="0">WindowOpen</animation>
        </control>
        <control>
          <id>0</id>
          <description>Album Star Rating Blank</description>
          <type>image</type>
          <visible>[facadeview.list|facadeview.album]+!string.equals(#AlbumInfo.Rating)+string.equals(#itemtype,#(L(132)))</visible>
          <posX>330</posX>
          <posY>300</posY>
          <width>120</width>
          <height>24</height>
          <texture>music-review-star0.png</texture>
          <animation effect="fade" time="250" delay="0">WindowClose</animation>
          <animation effect="fade" time="250" delay="0">WindowOpen</animation>
        </control>
        <control>
          <description>Album Star Rating Value</description>
          <id>0</id>
          <type>label</type>
          <label>#AlbumInfo.Rating / 9</label>
          <posX>460</posX>
          <posY>300</posY>
          <width>200</width>
          <font>mediastream11c</font>
          <shadowAngle>45</shadowAngle>
          <shadowDistance>4</shadowDistance>
          <shadowColor>#shadow.dark</shadowColor>
          <visible>[facadeview.list|facadeview.album]+string.equals(#AlbumInfo.Rating)+string.equals(#itemtype,#(L(132)))</visible>
          <animation effect="fade" time="250" delay="0">WindowClose</animation>
          <animation effect="fade" time="250" delay="0">WindowOpen</animation>
        </control>

    Great skin mod, keep it going!
     

    Attachments

    • MusicReviewStars.zip
      27.4 KB

    Mr. V

    Portal Pro
    September 15, 2007
    150
    164
    Brisbane
    Home Country
    Re: [MOD]vMusic Layouts for 1.2RC - v2.0 - clearart, cdArt, music tags and more

    hmmm, are you sure you can use skin expressions in visible conditions:
    Code:
    string.equals(#itemtype,#(L(132))
    Last I checked you couldn't. Maybe im getting confused with position/size properties.

    Seems to work fine. I have used this a lot in mymusicgenres.xml.


    For Example;
    <visible>[facadeview.list|facadeview.album]+string.equals(#itemtype,#(L(1052)))</visible>

    Hi,

    I've made a fix for Album star ratings. AMG returns ratings from 1 to 9 which is a bit of a problem for the way MP tries to pick a star texture.

    What I've done is create a series of star files for this rating, so 5 stars incrementing in half stars...
    (0=0 1=1 2=1.5 3=2 4=2.5 5=3 6=3.5 7=4 8=4.5 9=5)


    Great skin mod, keep it going!

    Thankyou. I was thinking about this one. Will include it in the update.
     

    robbo100

    Retired Team Member
  • Premium Supporter
  • May 5, 2009
    1,291
    308
    UK
    Home Country
    United Kingdom United Kingdom
    Re: [MOD]vMusic Layouts for 1.2RC - v2.0 - clearart, cdArt, music tags and more

    Mr.V / ltfearme

    Just out of interest (please don't see this as pressure)

    Is the intention for this MOD to be integrated into StreamedMP in the long term as part of the installer, or will users have to manually install the MOD each time after updating SMP skin?

    I presume the point at which the MOD is best integrated is once the automatic art grabber is working? If so, do you have a rough idea of how long this will take to get online?

    Thanks

    Robbo
     

    Users who are viewing this thread

    Top Bottom