MyVideos button to MovingPictures? (1 Viewer)

2BitSculptor

Super Moderator
  • Team MediaPortal
  • January 23, 2008
    1,954
    500
    South Central Wisconsin
    Home Country
    United States of America United States of America
    MediaPortal Version: mediaportal-svn-03-07-2009--01-58-Rev21864
    MediaPortal Skin: Blue 3
    Windows Version: XP MCE roll-up 2 + updates (sp3)
    CPU Type: AMD Athlon 64X2 6000+ 3.01 GHz
    HDD: WD eIDE 120GB / (2)WDC WD1600JS 160GB/ WDC WD5000AAKS 500GB/ WDC WD10EACS 1TB
    Memory: MWave 4GB DDR2 667=(2GB X 2)
    Motherboard: Gigabyte GA-MA78GM-S2H
    Video Card: on board
    Video Card Driver: current update
    Sound Card: on board Realtek HD & AC'97
    Sound Card AC3: 1 Optical
    Sound Card Driver: current update
    1. TV Card: HD HomeRun
    1. TV Card Type: ATSC (dual) ethernet
    1. TV Card Driver: hdhomerun_windows_20090215
    2. TV Card: WINTV-PVR-150 MCE
    2. TV Card Type: analog FM/S-Vid
    2. TV Card Driver: from install disk
    3. TV Card:
    3. TV Card Type:
    3. TV Card Driver:
    4. TV Card:
    4. TV Card Type:
    4. TV Card Driver:
    MPEG2 Video Codec: MPC (current SVN)
    MPEG2 Audio Codec: MPC (current SVN)
    h.264 Video Codec: ffdshow
    Satelite/CableTV Provider: OTA ATSC
    HTPC Case: Silverstone LC17B
    Cooling: CPU fan, 2 x 80 mm case fans
    Power Supply: Thermaltake TR2-420W
    Remote: Harmony 670 as MCE (US)
    TV: Hitachi 32" analog crt TV
    TV - HTPC Connection: VGA to S-video 4:3 (Grandtec PC to Video EZ)


    I was wondering, Since I have all my Movies in the MovingPictures plugin, and misc videos in the MyVideos Section. Is there a way to fool MP into going to MovingPictures instead of MyVideos when the 'Watch a Movie' button is pressed on the remote. I have a harmony remote, but the button is assigned to MyVideos, and I couldn't find a way to enter the ID# for MovingPictures.

    Thanks for any assistance.

    Chuck

    I think I found it... Thanks for the clue in https://forum.team-mediaportal.com/remotes-116/map-key-my-tv-series-33445/#post307348

    <button name="My Videos" code="74"><action layer="0" condition="WINDOW" conproperty="6" command="ACTION" cmdproperty="18" sound="click.wav" /><action layer="0" condition="WINDOW" conproperty="2005" command="ACTION" cmdproperty="18" sound="click.wav" /><action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="96742" sound="click.wav" /></button>

    Last action line... change the cmdproperty="6" (MyVideos) to cmdproperty="96742" (MovingPictures)

    Chuck
     

    kiwijunglist

    Super Moderator
  • Team MediaPortal
  • June 10, 2008
    6,746
    1,751
    New Zealand
    Home Country
    New Zealand New Zealand
    Code:
    <button name="My Videos" code="74">
    <action layer="0" condition="WINDOW" conproperty="6" command="ACTION" cmdproperty="18" sound="click.wav" />
    <action layer="0" condition="WINDOW" conproperty="2005" command="ACTION" cmdproperty="18" sound="click.wav" />
    <action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="6" sound="click.wav" />
    </button>

    you might want to change to

    Code:
    <button name="My Videos" code="74">
    <action layer="0" condition="WINDOW" conproperty="[B]96472[/B]" command="ACTION" cmdproperty="18" sound="click.wav" />
    <action layer="0" condition="WINDOW" conproperty="2005" command="ACTION" cmdproperty="18" sound="click.wav" />
    <action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="[B]96742[/B]" sound="click.wav" />
    </button>

    personally i have it set to

    Code:
    <button name="My Videos" code="74">
    <action layer="0" condition="WINDOW" conproperty="96472" command="WINDOW" cmdproperty="2005" sound="click.wav" />
    <action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="96742" sound="click.wav" />
    </button>

    or to use it as toggle between my videos and moving pictures try

    Code:
    <button name="My Videos" code="74">
    <action layer="0" condition="WINDOW" conproperty="96472" command="WINDOW" cmdproperty="6" sound="click.wav" />
    <action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="96742" sound="click.wav" />
    </button>

    PS - You should back up the mapping .xml file before you change it, because after you change it, trying to edit the file in mediaportal config, can cause config to crash.
     

    2BitSculptor

    Super Moderator
  • Team MediaPortal
  • January 23, 2008
    1,954
    500
    South Central Wisconsin
    Home Country
    United States of America United States of America
    • Thread starter
    • Moderator
    • #3
    Thanks for that...

    I made Config crash, too, just for giggles... Maybe it should be reported as a bug... reduces the flexibility of MediaPortal. As long as it is a valid entry (the plugin is present) We should be able to redirect buttons to whereever.

    Chuck
     

    Users who are viewing this thread

    Top Bottom