Simple question (1 Viewer)

pierremenard

MP Donator
  • Premium Supporter
  • April 6, 2006
    228
    0
    46
    Verona (Italy)
    Home Country
    Italy Italy
    Maybe it's borderline with "silly question".

    In skin\media directory (I use MePo Green) I found some icons that are not used (mylirics and dvrmpegcut) . Where shoud I edit xml skin files in order to specify which .png file to use with a specific plugin? Are the icon name embedded in the plugin?

    I tried to have a look to graphic wiki, but it did not helped (I'm not so pro-user).

    Thank you for the answers! And happy new year!

    F.
     

    pierremenard

    MP Donator
  • Premium Supporter
  • April 6, 2006
    228
    0
    46
    Verona (Italy)
    Home Country
    Italy Italy
    I did it with My programs (now I use the my emulators icon, as I use myprograms only for mame), but it's not possibile to do it with videoeditor (same icon as mytrailers, as I remember) and mylyrics.

    In my email I read a reply by mpod saying that it's hardcoded, but here it's not visible. So, there's nothing to do.

    Thank you and bye!

    F.
     

    mPod

    Portal Pro
    January 26, 2005
    2,084
    3
    Berlin
    Home Country
    Germany Germany
    For some plugins it's hardcoded, see the sources as a reference.

    For example:

    Code:
        public bool GetHome(out string strButtonText, out string strButtonImage, out string strButtonImageFocus, out string strPictureImage)
        {
          strButtonText = GUILocalizeStrings.Get(2090);
          strButtonImage = String.Empty;
          strButtonImageFocus = String.Empty;
          strPictureImage = "hover_videoeditor.png";
          return true;
        }


    So the only way for you is to rename your pngs to fit the module name. They should appear then. For those who don't, dig the code of those plugins. ;)
     

    Users who are viewing this thread


    Write your reply...
    Top Bottom