Turning off text in now playing screen? (1 Viewer)

2BitSculptor

Super Moderator
  • Team MediaPortal
  • January 23, 2008
    2,016
    602
    South Central Wisconsin
    Home Country
    United States of America United States of America
    I adjusted the MyMusicPlayingNowInfos.xml for my OldEyes variant of DWHD so it fits without crowding. I now have the issue of text from the CD animation overlaying the Album Information box on track change. I've tried a few "!" visibility ideas in the MyMusicPlayingNowAnimation.xml, but haven't found the one that works. I just need to get the text not to display when the Album-Information button is focused, during the animation sequence.

    Oh, also, I'd like to make visible the Playing Next info in the bottom left corner when the Album Info box is showing. It was made invisible when the info box was below the button box. It should remain invisible when the Artist Info and Lyrics boxes are displayed.

    Thanks for any assistance.

    12-06-55.png
     
    Last edited:

    2BitSculptor

    Super Moderator
  • Team MediaPortal
  • January 23, 2008
    2,016
    602
    South Central Wisconsin
    Home Country
    United States of America United States of America
    • Thread starter
    • Moderator
    • #2
    I compromised. I could not find an acceptable condition/boolean to fix the ideas I mentioned.

    Which do you like better? Both avoid overlaying text issues.
     

    Attachments

    • 09-57-59.png
      09-57-59.png
      2.1 MB
    • 10-13-54.png
      10-13-54.png
      2.2 MB
    Last edited:

    2BitSculptor

    Super Moderator
  • Team MediaPortal
  • January 23, 2008
    2,016
    602
    South Central Wisconsin
    Home Country
    United States of America United States of America
    • Thread starter
    • Moderator
    • #3
    I'm leaning toward this one, with the current album cover added. ... The Playing Next info is shown in the usual conditions.

    Edit: ... I could have duplicated the Playing Next info and added it to the Album Information section and changed the visibility condition, but it wouldn't have fixed my initial Animation text issue.
     

    Attachments

    • 10-50-08.png
      10-50-08.png
      2.5 MB
    • 10-55-27.png
      10-55-27.png
      2.6 MB
    Last edited:

    catavolt

    Design Group Manager
  • Team MediaPortal
  • August 13, 2007
    14,876
    11,029
    Königstein (Taunus)
    Home Country
    Germany Germany
    Sorry to find this thread a bit late ;)
    The easiest way to not show that text inside the animation, just comment out the respective lines in MyMusicPlayingNowAnimation.xml, beginning with line 480 <!-- Inside Text: Title, Artist, Album --> down to line 630 ;)
     

    2BitSculptor

    Super Moderator
  • Team MediaPortal
  • January 23, 2008
    2,016
    602
    South Central Wisconsin
    Home Country
    United States of America United States of America
    • Thread starter
    • Moderator
    • #5
    Sorry to find this thread a bit late ;)
    The easiest way to not show that text inside the animation, just comment out the respective lines in MyMusicPlayingNowAnimation.xml, beginning with line 480 <!-- Inside Text: Title, Artist, Album --> down to line 630 ;)
    Thanks for the reply. I knew how to turn it off completely. I was looking for a way to turn it off conditionally, eg., only when the large Album Information box was in the way. I could not discover the boolean function that did that. I find my compromise #3 satisfactory. The animation text is nice touch, and I wanted to keep it, even though it is too small to always read.
     

    bta489

    Portal Pro
    March 17, 2013
    190
    107
    Home Country
    Germany Germany
    Have you tried one of these two:
    Code:
    <visible>!Control.HasFocus(123)</visible>
    Code:
    <visible>control.isvisible(456)</visible>

    The first one hides something, when the button with <id>123</id> is highlighted, the second one shows something when <id>456</id> is also visible.
     

    2BitSculptor

    Super Moderator
  • Team MediaPortal
  • January 23, 2008
    2,016
    602
    South Central Wisconsin
    Home Country
    United States of America United States of America
    • Thread starter
    • Moderator
    • #7
    Have you tried one of these two:
    Code:
    <visible>!Control.HasFocus(123)</visible>
    Code:
    <visible>control.isvisible(456)</visible>

    The first one hides something, when the button with <id>123</id> is highlighted, the second one shows something when <id>456</id> is also visible.
    Thanks. I understand those boolean concepts, and tried several things. But it's the combination with the present visibility code that I couldn't resolve to my satisfaction. Besides, I like my last compromise design.
     

    bta489

    Portal Pro
    March 17, 2013
    190
    107
    Home Country
    Germany Germany
    My bad, I misunderstood your post then :)

    Yeah, these things can get complicated really quickly. I remember scrapping some of my skin-improvement-ideas because I couldn't get these cross-dependencies sorted out.
     

    Users who are viewing this thread


    Write your reply...
    Top Bottom