Make media logos bigger? (1 Viewer)

youngie10

Portal Member
November 19, 2010
7
1
Home Country
England England
Would it be possible to make the media logos bigger in moving pictures? I wasn't sure if this was for here or moving pictures but the logos are bigger in the blue3 skin so i guess it's here. Anyway if i edit this code, and if this is even the right xml!
Code:
<controls>
    <!-- Video Resolutions / Aspect Ratio -->
    <control>
      <description>720p, 1080i, 1080p</description>
      <type>image</type>
      <id>9796</id>
      <posX>355</posX>
      <posY>670</posY>
      <width>64</width>
      <height>32</height>
      <texture flipY="true" diffuse="Thumb_Mask.png">Logos\Video\#MovingPictures.LocalMedia.videoresolution.png</texture>
      <visible>!control.isvisible(50)+!control.isvisible(51)</visible>
      <animation effect="fade" time="250" delay="0">WindowClose</animation>
    </control>
in the "movingpictures.common.details.mediainfo" (i don't understand xml but i'm always willing to try so forgive if this is noobish) and change say width from 64 to 128 and height from 32 to 64 will that just make them bigger and be okay or would it mess everything up? Or what would i need to change as well?
Thanks for any replies in advance and any advice would be much appreciated.
 

ltfearme

Community Plugin Dev
  • Premium Supporter
  • June 10, 2007
    6,755
    7,200
    Sydney
    Home Country
    Australia Australia
    Your looking at the right file, but I dont think your looking at the right skin!

    This is the default:
    Code:
    <!-- Video Resolutions / Aspect Ratio -->
        <control>
          <description>720p, 1080i, 1080p</description>
          <type>image</type>
          <id>9796</id>
          <posX>345</posX>
          <posY>665</posY>
          <width>100</width>
          <height>32</height>
          <texture flipY="true" diffuse="Thumb_Mask.png">Logos\Video\#MovingPictures.LocalMedia.videoresolution.png</texture>
          <visible>!control.isvisible(50)+!control.isvisible(51)</visible>
          <animation effect="fade" time="250" delay="0">WindowClose</animation>
        </control>
    Are you sure your not using some MOD? The Default Logos are already using the best resolution.

    If you want to change due to using different logos then yes all you need to edit is:
    Code:
    <posX>345</posX>
    <posY>665</posY>
    <width>100</width>
    <height>32</height>
     

    Users who are viewing this thread

    Top Bottom