(2015-07-05, 11:37)Discomanhenk Wrote: @im85288 I like this mod really really really great.
every week more beautiful
Please would you like your creative eye objects to my question in post 75?
Keep up the good work
Thanks
What kind of thing are you looking for in the music visualisation area? Any skins/mods to look at that do things better?
(2015-07-05, 13:54)bsoriano Wrote: Ian,
This skin just keeps getting better and better every day, thank you so much!
The only things I am missing are:
1. The duration in the movie an TV views looks too big for me and does not go well with the colored flags. What files would I need to look at if I want to change that?
2. In the movie views you have an indicator for when the movie is in the IMDb Top 250, but it does not show what position it holds (like 5 or 10 or 200). Could you consider adding this? If not, what files would I need to look at to add this myself?
3. Flags for multiple subtitles instead of just the first one.
4. A button in the video info dialog to run Artwork Downloader to retrieve all artwork for the movie or TV show automatically.
Thanks for considering my requests!
Regards,
Bart
Thanks, I agree with you about the duration...does not seem to match with the colour flags..any suggestions/mock ups for improvements? Also fully agree with the top 250 position..I did add that to the info dialog but not the flags, I will add that as it's going to help a lot especially with the new top250 menu item. The subtitles and languages should in theory display multiple flags if they are available.
This is the code for the subtitle flags:
<control type="image">
<top>6</top>
<width>35</width>
<height>23</height>
<texture>$INFO[Window(movieinformation).Property(SubtitleLanguage.1),flags/language/,.png]</texture>
<visible>!IsEmpty(Window(movieinformation).Property(SubtitleLanguage.1))</visible>
</control>
<control type="image">
<top>6</top>
<width>35</width>
<height>23</height>
<texture>$INFO[Window(movieinformation).Property(SubtitleLanguage.2),flags/language/,.png]</texture>
<visible>!IsEmpty(Window(movieinformation).Property(SubtitleLanguage.2))</visible>
</control>
<control type="image">
<top>6</top>
<width>35</width>
<height>23</height>
<texture>$INFO[Window(movieinformation).Property(SubtitleLanguage.3),flags/language/,.png]</texture>
<visible>!IsEmpty(Window(movieinformation).Property(SubtitleLanguage.3))</visible>
</control>
As you can see it will display the flag as long as it is not empty.
I do not use ArtworkDownloader (due to Emby doing this automatically for me), should I remove the version that is currently there now where you can select individual artwork and replace it with the automatic get all artwork?
Cheers