MediaStream skin for MP (1 Viewer)

Status
Not open for further replies.

Spragleknas

Moderator
  • Team MediaPortal
  • December 21, 2005
    9,471
    1,822
    Located
    Home Country
    Norway Norway
    What do you mean by not use home? The other screen shot is myhome.xml. This is basichome.xml and you can add whatever you want to the menu so if you only use Movies Music and TVSeries thats all that has to be on there using the menu generator.
    I mean pressing [H]/The Green Button will always bring you to basic home (never "myhome.xml").

    Since the two homescreens are, unlike other skins, very much alike in layout (don't missunderstand me - I love the layout) it might be hard to tell them apart for some users (read: GF's ;)

    Scenario:
    Q:"Why isn't MyYoutube listed anymore?"
    A: "It's in the other homescreen"
    Q:"What other homescreen?"
    A: "Press the green botton and see"
    Q: "OK. What is the difference? I can't see any - other than different stuff is listed"
     

    ThaClown

    Moderator - Dutch Forums
    May 28, 2006
    807
    26
    Den Bosch
    Home Country
    Netherlands Netherlands
    The REAL LIFE Scenario:
    GIRLFRIEND:"Why isn't MyYoutube listed anymore? HAVE YOU CHANGED THE SYSTEM AGAIN???"
    ME: "It's in the other homescreen"
    GIRLFRIEND:"What other homescreen? WHY ARE THERE MORE THEN ONE???"
    A: "Press the green botton and see"
    GIRLFRIEND: "OK. What is the difference? I can't see any - other than different stuff is listed... grrrr YOU GO CLEAN UP!"
     

    revs

    MP Donator
  • Premium Supporter
  • February 1, 2007
    1,272
    72
    The Sauce of Worcester
    Home Country
    Wales Wales
    This is why we need an option to use ONLY the Basic Home. One of the other, not both :)

    Could the Basic Home plugin be modified I wonder? so that pressing the Green Button does not send you to the main home?
     

    revs

    MP Donator
  • Premium Supporter
  • February 1, 2007
    1,272
    72
    The Sauce of Worcester
    Home Country
    Wales Wales
    If Basic Home is enabled you go to Basic Home. Pressing it again takes you to Home.

    So if you press it twice with Basic Home enabled, then you go to Home.

    I'm going to take a quick look at the source, see if its an easy fix - although I guess not, as if it was, then the option would be there already.

    ----------

    OK so in Mediaportal.cs theres a bit of code that handles switching the Basic Home and Home.

    What I would like is an option in the settings for "Only use Basic home", and based on this, it does, or does not, perform the switch.

    Being as MP is in feature freeze though I doubt it will get in! :)

    Currently we have:

    //switch between several home windows
    case Action.ActionType.ACTION_SWITCH_HOME:
    GUIMessage homeMsg;
    if (GUIWindowManager.ActiveWindow == (int)GUIWindow.Window.WINDOW_HOME)
    {
    homeMsg =
    new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_SECOND_HOME, 0, null);
    }
    else if (GUIWindowManager.ActiveWindow == (int)GUIWindow.Window.WINDOW_SECOND_HOME)
    {
    homeMsg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_HOME, 0, null);
    }
    else
    {
    if (_startWithBasicHome)
    {
    homeMsg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_SECOND_HOME, 0, null);
    }
    else
    {
    homeMsg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_HOME, 0, null);
    }
    }
    GUIWindowManager.SendThreadMessage(homeMsg);
    return;

    and I guess we need something like:

    //switch between several home windows
    case Action.ActionType.ACTION_SWITCH_HOME:
    GUIMessage homeMsg;
    if (GUIWindowManager.ActiveWindow == (int)GUIWindow.Window.WINDOW_HOME)
    {
    homeMsg =
    new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_SECOND_HOME, 0, null);
    }
    else if (GUIWindowManager.ActiveWindow == (int)GUIWindow.Window.WINDOW_SECOND_HOME)
    {
    homeMsg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_HOME, 0, null);
    }
    else
    {
    if (_startWithBasicHome)
    {
    homeMsg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_SECOND_HOME, 0, null);
    }
    else
    {
    homeMsg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_HOME, 0, null);
    }
    }
    if(_alwaysUseBasicHome)
    {
    homeMsg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_SECOND_HOME, 0, null);
    }

    GUIWindowManager.SendThreadMessage(homeMsg);
    return;
     

    Spragleknas

    Moderator
  • Team MediaPortal
  • December 21, 2005
    9,471
    1,822
    Located
    Home Country
    Norway Norway
    The [H]/Green Button is (by default) mapped to "Switch home" ( Home <--[H]/TGB---> Basic home) but can be mapped to "Home"(myHome.xml) - thus not ever going to basic homescreen. You can, however, enter basichome via the "Switch home" function normally in top menu (top bar) - IRRC.

    Being able to map the button to basic home would perhaps be the easies way?
    If Basic Home is enabled you go to Basic Home.
    Basic home is always enabled. You can only choose your default/startup home.
     

    mattsk88

    Community Skin Designer
    March 27, 2008
    363
    216
    Here is another Screenshot to keep this thread interesting. This is the Fanart focused Moving Pictures Filmstrip. There still might be a few changes to the final layout though.
     

    Attachments

    • streamed- Moving pictures.jpg
      streamed- Moving pictures.jpg
      328 KB

    jonaskp

    Portal Pro
    October 23, 2006
    438
    15
    Home Country
    Denmark Denmark
    Here is another Screenshot to keep this thread interesting. This is the Fanart focused Moving Pictures Filmstrip. There still might be a few changes to the final layout though.

    THat looks great. I especially like the Covers, can't tell why. It looks like they are a little tilted, is that correct? Also Now I see that they go behind the textbox, nice touch.


    Btw: What's up with all the zombie-movies?:D
     
    Status
    Not open for further replies.

    Users who are viewing this thread

    Similar threads

    MP1 MP2 Skin-engine quirks DE
    wow this is a weird construction,that will heavily depend on execution order of those 2 parameters in the iff And as you found out, in your case the order is probably the other way around than you expected...
    wow this is a weird construction,that will heavily depend on execution order of those 2 parameters in the iff And as you found out...
    onfocus Recently I tried coding this: <onfocus>#(iif(eq(#skin.search.id,0),skin.setstring('#skin.search.id',10)))</onfocus>...
    Replies
    1
    Views
    197
    I think 1.38 is easier, it's a minor addition, judging by the lack of bugs, 1.39 is still a long way off. Ideally, the TuningParameters settings would be moved to MPE1, along with all the skins. Then any minor fixes could be updated quickly.
    I think 1.38 is easier, it's a minor addition, judging by the lack of bugs, 1.39 is still a long way off. Ideally, the...
    Hello and good morning, atm I´m gonna try to install my new MP2 Server with a hybrid solution DVB-T2 and MagentaTV. For DVB-T2 I...
    Replies
    9
    Views
    3K
    MP1 MP2 MP Shutting down DE
    I got a similar error yesterday just when a watched episode ended... Didn't copy the logs unfortunately but now i'm in a weird situation. Trakt website shows that episode as watched, but in onlinevideos (where i watched that episode) it still is not flagged as watched. The watched.json doesn't contain that episode but i think it...
    I got a similar error yesterday just when a watched episode ended... Didn't copy the logs unfortunately but now i'm in a weird...
    I have an issue that started in 1.37 and so I updated to 1.38 and updated all my installed plugins but the issue has continued. My...
    Replies
    6
    Views
    643
    MP1 MP2 Design questions. DE
    No No
    No No
    Is there an xml display utility that will allow graphically checking of dialog and osd text and graphics element placement? or Is...
    Replies
    1
    Views
    2K
    I do not know why this xml was in my theme folders, it must have sneaked in some time ago (years?). I simply removed the file. The Latest Media Handler plugin seems to be working as expected. I've had no lock-ups.
    I do not know why this xml was in my theme folders, it must have sneaked in some time ago (years?). I simply removed the file. The...
    Before you create this bug report: Make sure that your system (windows, codecs and drivers) is up to date, matching the...
    Replies
    13
    Views
    4K
    Top Bottom