Clear Logo Artwork
#1
Hi folks,
Have just started using one of the Estuary mods which includes a few Netflix style screens, which I quite like. However, when you switch on the option to display the clear logo artwork, it's displayed right next to text title. What I would to do is to display the clear logo artwork by default and only show the text title as a fallback if no artwork actually exists for the current title. I'm still a little unsure what I need to do to achieve this result, so any help would be much appreciated.

Here's the code for displaying the clear logo artwork:-

PHP Code:
<control type="image">
    <
depth>DepthContentPopout</depth>
    <
top>60</top>
    <
left>-65</left>
    <
width max="537">auto</width>
    <
height>120</height>
    <
aspectratio align="top" aligny="center">keep</aspectratio>
    <
texture>$VAR[ClearLogoVar]</texture>
    <
visible>!ListItem.IsCollection + !ListItem.IsParentFolder</visible

I'd also like to create a button on this screen that when pressed, would take me to movie/tv show info screen for the current title. I created a button with no problem and gave it the onclick command for the DialogVideoInfo.xml file, but when clicked everything is blank. What do I need to add to show all the info? Again, any help is much appreciated.

Cheers
Reply
#2
Okay, so I've solved the clear logo artwork problem (eventually) and works as I wanted. Smile

That's just leaves the button problem(s). The author of the Mod I'm using has added a Play Trailer button on the Netflix Style screen, which I quite like and works fine. The only issue is when I press 'UP' to get to this button, the Genre and Plot information suddenly disappears, but the Play Trailer button does work as expected. When I press 'Down' to get to Movie/TV show Tv titles, the Genre and plot information re-appears.
How can I solve this issue and keep both the Genre and plot info, when I press 'UP'?

As previously posted, I've also created another button next the play trailer button, which I want to take me to the Movie/Info screen for the current. I've currently used <onclick>ActivateWindow(12003)</onclick> which I thought (wrongly) would open this window with all relevant info, but I'm getting just a blank screen:-

Image

Here's the code I've used:-

PHP Code:
<control type="grouplist" id="5000">
                    <
left>50</left>
                    <
top>460</top>
                    <
width>675</width>
                    <
height>50</height>
                    <
onup>9000</onup>
                    <
itemgap>16</itemgap>
                    <
align>left</align>
                    <
orientation>horizontal</orientation>
                    <
control type="button" id="139">
                        <
width>175</width>
                        <
height>50</height>
                        <
align>center</align>
                        <
label>Play Trailer</label>
                        <
onclick>PlayMedia($INFO[ListItem.Trailer])</onclick>
                        <
icon>icons/infodialogs/trailer.png</icon>
                        <
texturenofocus>red.png</texturenofocus>
                        <
texturefocus>green.png</texturefocus>
                        <
visible>Container.Content(movies)</visible>
                        <
onup>139</onup>
                        <
ondown>502</ondown>
                        <
onleft>9000</onleft>
                        <
onright>502</onright>
                    </
control>
                    <
control type="button" id="140">
                        <
width>175</width>
                        <
height>50</height>
                        <
align>center</align>
                        <
label>More Info</label>
                        <
onclick>ActivateWindow(12003)</onclick>
                        <
texturenofocus>red.png</texturenofocus>
                        <
texturefocus>green.png</texturefocus>
                        <
ondown>502</ondown>
                        <
onleft>139</onleft>
                        <
onright>502</onright>
                    </
control

What am I'm doing wrong here?
I realise that to many people all of this must seem like pretty basic and simple stuff, which is probably true enough, but I often seem to find that just trying to source the correct information from the skinning manual or examples on how to do these kind of things is pretty much an effort in itself.
Frustration overload indeed..... Smile lol

Any help or feedback is much appreciated folks Smile
Reply

Logout Mark Read Team Forum Stats Members Help
Clear Logo Artwork0