- Moderator
- #1
As you might know, SubCentral, a new centralized plugin for subtitle management in MediaPortal is due to be released soon. As part of integration, in addition to creating SubCentral skin files, skinners should also make small adjustment to MovingPictures skin file. To my knowledge, many of the popular skins have already been updated.
Basically, all that's needed is one extra button control with hyperlink to SubCentral. Something like this:
It's possible to add this anywhere in MovingPictures but most logical and preferred locations are:
Both places have advantages and disadvantages. Disadvantage of button in details screen is that you IMHO ruin the clean look of that super cool screen And also, makes for more complex navigation. Disadvantage of button in (hidden) menu is that you cannot access it for every movie while browsing movies in small or large thumbs views. There are no problems for list or filmstrip views. It is of course up to you to decide for the approach that best suits your skin.
Example of button in details screen is in default Blue3/Blue3wide skins that come with MovingPictures > v1.0.3:
movingpictures.details.xml - moving-pictures - Project Hosting on Google Code
Button in hidden menu already exist in Black Glass (Nova):
movingpictures.hiddenmenu.xml - blackglass - Project Hosting on Google Code
StreamedMP has it both ways, in details screen as in hidden menu:
movingpictures.details.xml - streamedmp - Project Hosting on Google Code
movingpictures.hiddenmenu.xml - streamedmp - Project Hosting on Google Code
If you also want to start designing SubCentral skin file, take a look at skins at Google Code pages:
subcentral - Project Hosting on Google Code
trunk - streamedmp - Project Hosting on Google Code
Thanks for looking and the support
Regards,
SE
Basically, all that's needed is one extra button control with hyperlink to SubCentral. Something like this:
Code:
<control>
<description>SubCentral</description>
<id>999</id>
<type>button</type>
<label>Check for Subtitles</label>
<hyperlink>84623</hyperlink>
<visible>plugin.isenabled(SubCentral)+!control.isvisible(50)+!control.isvisible(51)</visible>
</control>
It's possible to add this anywhere in MovingPictures but most logical and preferred locations are:
- Details screen
- (Hidden) menu
Both places have advantages and disadvantages. Disadvantage of button in details screen is that you IMHO ruin the clean look of that super cool screen And also, makes for more complex navigation. Disadvantage of button in (hidden) menu is that you cannot access it for every movie while browsing movies in small or large thumbs views. There are no problems for list or filmstrip views. It is of course up to you to decide for the approach that best suits your skin.
Example of button in details screen is in default Blue3/Blue3wide skins that come with MovingPictures > v1.0.3:
movingpictures.details.xml - moving-pictures - Project Hosting on Google Code
Button in hidden menu already exist in Black Glass (Nova):
movingpictures.hiddenmenu.xml - blackglass - Project Hosting on Google Code
StreamedMP has it both ways, in details screen as in hidden menu:
movingpictures.details.xml - streamedmp - Project Hosting on Google Code
movingpictures.hiddenmenu.xml - streamedmp - Project Hosting on Google Code
If you also want to start designing SubCentral skin file, take a look at skins at Google Code pages:
subcentral - Project Hosting on Google Code
trunk - streamedmp - Project Hosting on Google Code
Thanks for looking and the support
Regards,
SE